Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

DISCLAIMER:
THIS QUESTION WAS NOT MEANT TO BE ARGUMENTATIVE!!!!!!!

What is fastest and less memory draining way of searching a key-value pair? I will be storing items in a key-value like relation and I need to access them quickly. Should I use a SQLite database? A Map? A Hashtable? A HashMap? Please give some advantages/disadvantages of using whatever method of searching.

share|improve this question

2 Answers

up vote 8 down vote accepted

Any hash-based Map structure is the way to go as long as your hash function for the key is efficient. You can use value id:s as the result for the lookup to conserve memory during search.

If your data is already in database though, you can leave this search entirely to the RDBMS, after all they're made for this stuff.

share|improve this answer

If your data is in memory, Maps in general are your friends - they are meant for this.

Don't use a Hashtable however. It is much slower than newer Map implementations. because its methods are synchronized, which most of the time is not needed (and when needed, there is a much better alternative - see below).

In single-threaded context, HashMap is probably going to be OK.

If you need thread safety, use a ConcurrentHashMap.

share|improve this answer
HashTable is NOT synchronized and faster than ConcurrentHashMap in single-threaded-environments while it does not have any locking ! If the access to the map is multithreaded ConcurrentHashMap is really the best solution. – Tobias P. Jun 18 '10 at 12:48
@Tobias, "Unlike the new collection implementations, Hashtable is synchronized" - from java.sun.com/j2se/1.5.0/docs/api/java/util/Hashtable.html – Péter Török Jun 18 '10 at 13:03
Since we're talking about semantics... "ConcurrentHashMap implementation performs better than HashMap in nearly all situations. It also allows for simultaneous concurrent reads and writes, and it has methods supporting common composite operations that are otherwise not thread safe. If Java 5 is the deployment environment, start with ConcurrentHashMap." Clean Code - A Handbook of Agile Software Craftsmanship, Robert C. Martin, p.183 – Esko Jun 18 '10 at 13:16
@Esko, good find, I didn't remember that :-) However, the difference seems to be negligible. Says Java Generics and Collections, ch. 16.4.1: "Disregarding locking overheads such as those just described, the cost of the operations of ConcurrentHashMap are similar to those of HashMap". It recommends HashMap for single threaded use. – Péter Török Jun 18 '10 at 13:26
Ah right, i was talking of HashMap not HashTable, which is nor synchronized and therefore the best solution for single-threaded-environments. Java Concurrency in Practise too recommends non-locking collection if locking is not needed. – Tobias P. Jun 18 '10 at 13:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.