Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
157 views

Tips for creating a very large database of hashes

The question: What solution or tips would you have to deal with a very large (multi terabytes) database indexed on strong hashes with high redundancy? Some kind of inverted storage? Is there ...
3
votes
1answer
127 views

Why search engines do not use mysql? [closed]

Search engines (or similar web services) use flat file and nosql databases. The structure of an Inverted Index is simpler than many-to-many relationship, but it should be more efficient to handle it ...
3
votes
2answers
171 views

Use of indexes for multi-word queries in full-text search (e.g. web search)

I understand that a fundamental aspect of full-text search is the use of inverted indexes. So, with an inverted index a one-word query becomes trivial to answer. Assuming the index is structured like ...
3
votes
3answers
389 views

Using cPickle to serialize a large dictionary causes MemoryError

I'm writing an inverted index for a search engine on a collection of documents. Right now, I'm storing the index as a dictionary of dictionaries. That is, each keyword maps to a dictionary of ...
3
votes
2answers
758 views

How do search engines merge results from an inverted index?

How do search engines merge results from an inverted index? For example, if I searched for the inverted indexes of the words "dog" and "bat", there would be two huge lists of every document which ...
2
votes
6answers
862 views

Storing an inverted index

I am working on a project on Info Retrieval. I have made a Full Inverted Index using Hadoop/Python. Hadoop outputs the index as (word,documentlist) pairs which are written on the file. For a quick ...
2
votes
1answer
95 views

I have created inverted index for a website but where to store that? Database for a search engine?

What can be the database for a search engine? I mean after creating inverted index for a site, where one could store it so that program can create indices for other sites and save them too. Later on ...
2
votes
2answers
496 views

Inverted index in a search engine

I'm trying to write some code to make a small application for searching text from files. Files should be crawled, and I need to put an inverted index to boost searches. My problem is that I kind of ...
1
vote
0answers
33 views

How to create an index for a collection of vectors/histograms for content based image retrieval

I'm currently writing a Bag of visual words-based image retrieval system which is similar to the Vector Space Model in text retrieval. Under this framework, each image is represented by a vector (or ...
1
vote
1answer
61 views

Inverted Index Evaluation Order

I read somewhere that when you have an inverted index (for instance, you have a sorted list of pages of brutus, a sorted list of pages for caesar, and a sorted list of pages for calpurnia), when you ...
1
vote
1answer
573 views

How to search phrase queries in inverted index structure?

If we want to search a query like this "t1 t2 t3" (t1,t2 ,t3 must be queued) in an inverted index structure , which ways should we do ? 1-First we search the "t1" term and find all documents that ...
1
vote
2answers
533 views

Assistance with building an inverted-index

It's part of an information retrieval thing I'm doing for school. The plan is to create a hashmap of words using the the first two letters of the word as a key and any words with the two letters saved ...
1
vote
3answers
956 views

Ways to create a huge inverted index

I want to create a big inverted index of around 106 terms. What method would you suggest? I'm thinking in fast binary key store DBs like Tokyo cabinet, voldemort, etc. Edit: I've tried MySQL in the ...
0
votes
3answers
238 views

inverted index in lucene

I want to know that in lucene excatly which class make inverted index?? Tnanks
0
votes
1answer
203 views

Some questions related to SphinxSE and RT indexes

I consider using Sphinx search in one of my projects so I have a few questions related to it. When using SphinxSE and RT index, every UPDATE or INSERT in the SphinxSE table will update the index, ...
0
votes
1answer
175 views

MySQL: Best way to search in files' content (fulltext search)

I'm currently developing a website which allows the users to upload presentations, documents and e-books (something like scribd and slideshare) so I need to be able to search in the file's content. ...
0
votes
3answers
715 views

Loading a large dictionary using python pickle

I have a full inverted index in form of nested python dictionary. Its structure is : {word : { doc_name : [location_list] } } For example let the dictionary be called index, then for a word " spam ...
0
votes
3answers
344 views

Searching a normal query in an inverted index

I have a full inverted index in form of nested python dictionary. Its structure is : {word : { doc_name : [location_list] } } For example let the dictionary be called index, then for ...
0
votes
1answer
482 views

How to get byte offset in a file in python

I am making a inverted index using hadoop and python. I want to know how can I include the byte offset of a line/word in python. I need something like this hello hello.txt@1124 I need the ...
0
votes
4answers
492 views

what is the best way to build inverted index?

I'm building a small web search engine for searching about 1 million web pages and I want to know What is the best way to build the inverted index ? using the DBMS or What …? from many different views ...