We have a large number of Python bytearray strings of variable length which need to remain in memory. Wrt raw-performance, is a Python dictionary the most efficient in-memory storage for read-only random-access for the bytearray strings? The dictionary keys could be integers or strings. If not, what is better?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
closed as not a real question by interjay, Kjuly, hjpotter92, Jon Lin, stealthyninja Oct 15 '12 at 6:20
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
It all depends on how you intend to access them. If you just want to iterate through them, put them in a |
|||||||||||||||||
|