up vote 1 down vote favorite
share [g+] share [fb]

I need to index up to 500,000 entries for fastest read. The index needs to be rebuilt periodically , on disk. I am trying to decide between a simple file like a hash on disk or a single table in an embedded database. I have no need for an RDBMS engine.

link|improve this question

22% accept rate
What is this for? Is this inside of a database management system (MySQL, etc.?) Are you indexing flat files on disk? Are they binary or ASCII?? What is going on? – Matt Rogish Sep 16 '08 at 0:21
It can be a flat file. Entries are ASCII and up to 512 characters. I need to store and get a state attribute. – Notitze Sep 16 '08 at 0:44
feedback

7 Answers

I'm assuming you're referring to indexing tables on a relational DBMS (like mySql, Oracle, or Postgres).

Indexes are secondary data stores that keep a record of a subset of fields for a table in a specific order.

If you create an index, any query that includes the subset of fields that are indexed in its WHERE clause will perform faster.

However, adding indexes will reduce INSERT performance.

In general, indexes don't need to be rebuilt unless they become corrupted. They should be maintained on the fly by your DBMS.

link|improve this answer
feedback

Perhaps BDB? It is a high perf. database that doesn't use a DBMS.

link|improve this answer
feedback

If you've storing state objects by key, how about Berkeley DB.

link|improve this answer
feedback

cdb if the data does not change.

/Allan

link|improve this answer
feedback

PyTables Pro claims that "for situations that don't require fast updates or deletions, OPSI is probably one of the best indexing engines available". However I've not personally used it, but the F/OSS version of PyTables gives already gives you good performance:

http://www.pytables.org/moin/PyTablesPro

link|improve this answer
feedback

This is what MapReduce was invented for. Hadoop is a cool java implementation.

link|improve this answer
MapReduce has nothing to do with reducing index response times in databases. – 1800 INFORMATION Sep 16 '08 at 0:28
No, it doesn't. But as I understand the question, it's about reading from disk. – sblundy Sep 16 '08 at 0:35
feedback

If the data doesn't need to be completely up to date, you might also like to think about using a data warehousing tool for OLAP purposes (such as MSOLAP). The can perform lightning fast read-only queries based on pre-calculated data.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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