tsudot
tsudot

Reputation: 543

Data structure for a search engine?

Which is the most efficient data structure or algorithm, which can be used for storing search engine data. Also which distributed file system could go with it?

Upvotes: 1

Views: 3143

Answers (2)

Agusti-N
Agusti-N

Reputation: 3973

Ternary Tree

I think that it's the best.

Upvotes: 2

ankitjaininfo
ankitjaininfo

Reputation: 12372

Inverted Index

For more details refer open source Lucene and Nutch architecture.

Upvotes: 4

Related Questions