Python

3459 readers
4 users here now

News and discussions about the programming language Python


founded 6 years ago
MODERATORS
51
 
 
52
53
1
submitted 2 years ago* (last edited 2 years ago) by cypherpunks@lemmy.ml to c/python@lemmy.ml
 
 
54
1
Textualize.io (www.textualize.io)
submitted 2 years ago by sgtnasty@lemmy.ml to c/python@lemmy.ml
 
 

Build amazing TUIs (Text User Interfaces) with this innovative Python framework

55
56
 
 

It's faster now, great.

57
58
59
 
 

cross-posted from: https://feddit.de/post/248196

I have lots of multiprocessing processes which have to add to and search in a dict. Deletion of values is not needed.

Atm I am using multiprocessing.Manager() and

dict = manager.dict()

This works pretty well, but I think that the manager is a huge bottleneck here. Any ideas? It has to run on older Python 3 versions, otherwise I would use this cool thing I found: https://github.com/ronny-rentner/UltraDict

60
61
62
63