You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noted that gpython is not support concurrent processing library yet. Is it safe if I use gpython in multi thread then? If not, how should I make it synchronized.
The text was updated successfully, but these errors were encountered:
Gpython has no way of making threads (or go routines) yet.
So I guess you are asking about making multiple instances of gpython? I think this should be fine but there may be some global state I'm forgetting about.
In due course I'd like to add a create a go-routine function to gpython. From that point normal go style locking will need to be used to access dictionaries concurrently etc.
I've noted that gpython is not support concurrent processing library yet. Is it safe if I use gpython in multi thread then? If not, how should I make it synchronized.
The text was updated successfully, but these errors were encountered: