I am programming a list of recent network messages communicated to/from a client. Basically I just want a list that stores up to X number of my message objects. ...
What is the most efficient Java Collections library?
A few years ago, I did a lot of Java and had the impression back then that trove is the best (most ...
Using Drools 3.0.6 (old, I know), what is an efficient evaluation for finding a fact in a known, fixed and quite large array or collection (the inverse of contains, i.e. "is ...
I need to store millions of string with common prefixes (they don't correspond to file system paths) in a Set like structure in memory, and query the Collection to see if ...
I'm missing some kind of collection functionality for a specific problem.
I'd like to start with a few informations about the problem's background - maybe there's a more elegant way to solve ...
I'm trying to find a class for storing a vector of bytes in Java, which supports: random access (so I can get or set a byte anywhere), resizing (so I can ...
I have a program that needs to be make many thousand database calls to see if entries exist. I would like to make one call, populate a key/value collection and was wondering what is the most efficient collection. I am looking at up to 30 - 40 thousand rows of string data. Any suggestions?