Whoosh is a fast, featureful full-text indexing and searching library implemented in pure Python.
0
votes
0answers
18 views
searching different models in haystack whoosh
i am using haystack and whoosh , but it only displays the results of one model , i made the index classes for the 3 models i need ,and i can choose the model i want to search in my templates , but ...
0
votes
0answers
13 views
Spelling suggestion and autocomplete using haystack and whoosh
i am using search engine in my site using haystack and whoosh and it works , i want to know in detailed steps how to enable spelling suggestion ( did you mean "") and autocomplete to complete the ...
0
votes
1answer
37 views
Python-Whoosh BufferedWriter does not commit to the disk
Here is example in which I try to index large collection with whoosh
schema = Schema(name=TEXT(stored=True), m=ID(stored=True), content=KEYWORD(stored=True))
ix = create_in("indexdir", schema)
from ...
0
votes
1answer
71 views
Django Haystack Whoosh Multilanguage site
I am using haystack with whoosh backend in my django project. And my models are multilingual with the modeltranslation module, it creates automatic fields like title_tr, title_en for a field named ...
2
votes
1answer
109 views
Django haystack filter in search index
I have a search working fine on my project. But in my models I have a boolean field named is_active.
I want the search occurs only when is_active is True, but I've been testing this without any ...
0
votes
1answer
100 views
Cosine scoring in whoosh, python
I've implemented some python code to run search on whoosh using BM25 and all went out ok, but now that I'm trying to change scoring mechanism to Cosine, I'm getting this error:
File "TFIDF.py", ...
0
votes
1answer
93 views
Django-haystack with whoosh - can't filter by boolean field
Well, I've been pulling my hair out over this one for many hours now and figured it's time to seek assistance as I'm not able to find out why this is happening via google searches...
Essentially I'm ...
1
vote
1answer
57 views
whoosh doesn't search for short words like “C#”
i am using whoosh to index over 200,000 books. but i have encountered some problems with it.
the whoosh query parser returns NullQuery for words like "C#", "C++" with meta-characters in them and also ...
1
vote
1answer
97 views
haystack whoosh no results - rebuild_index shows Indexing [number] <django.utils.functional.__proxy__ object at [memory location] >
when I run ./manage.py rebuild_index I get the readout for example:
Indexing 4574 <django.utils.functional.__proxy__ object at at 0x1aab690> .
Having seen other users' readouts, this should ...
1
vote
1answer
65 views
Django-haystack search with whoosh returns 'No results' debugging unsuccessful
I am new to Django and Haystack. I have done everything suggested on the "getting started" page of the Haystack Documentation and on the debugging page, but I cannot see where my error lies. ...
0
votes
2answers
68 views
Search backend for Django App on Heroku
On my development app I'm using a combo of Haystack for search with Whoosh as the backend.
However, when I deploy to Heroku my search is no longer working, even after running python manage.py ...
2
votes
2answers
101 views
Whoosh: shouldn't OR only increase results?
We have about 9k documents indexed using Haystack 1.2.7 with Whoosh 2.4.1 as backend. Despite of using Haystack, it looks like a Whoosh problem. Take a look at my debug cases:
1) If I just run an ...
0
votes
0answers
30 views
Having both Whoosh and Solr at the same time
I am using django-haystack with whoosh for basic search. However, I have now been asked to implement spatial search and I thought the good way to go would be Solr. My question is the following, can I ...
2
votes
1answer
73 views
out of index in python
I'm trying to make indexing to an excel file and i used whoosh package but, i
found an error that the list index is out of range.
please, can anyone help me?
my code is:
from whoosh import fields, ...
0
votes
1answer
24 views
Include slashes and parentheses in tokens
Background
I have search indexes containing Greek characters. Many people don't know how to type Greek so they enter something called "beta-code". Beta-code can be converted into Greek. For example, ...
0
votes
0answers
54 views
Sorting by DateTime field in haystack with whoosh
I'm using django haystack and whoosh as backend.
When i use .order_by('<datetime attr>') search order looks like it was 1st sorted by weight and only then by date.
Is there any way to sort ...
0
votes
1answer
68 views
How to write correct query for Haystack + Whoosh in Django
I have model:
class Article(models.Model):
title = models.CharField(max_length=250)
slug = models.SlugField(max_length=250)
text = models.TextField()
date = ...
1
vote
0answers
64 views
Django-haystack: rebuild_index fails (haystack.exceptions.SearchFieldError) after adding `content_auto` line needed for autocomplete
I'm trying to implement yielding results for a searching only a part of a word (which is called autocomplete according to the Haystack docs if I'm not mistaken).
Example:
Search "gol"
Result ...
1
vote
1answer
77 views
python whoosh error
This strange error appears after i had interrupted whoosh commit process. When i am trying to commit now i'm getting
File "/usr/local/lib/python2.7/dist-packages/whoosh/filedb/filewriting.py", line ...
0
votes
1answer
104 views
django haystack module search with whoosh
I'm trying to add a module wide search for my App and found haystack-search. I took whoosh to store the search information.
I've configured my search as told in the docs and already can find results.
...
0
votes
2answers
160 views
Django Haystack similarity search
I'm a Django newbie doing a primitive website. I installed haystack and Whoosh as its search engine cause it was the simplest thing to do. It works fine, but there is a problem and I don't know how to ...
0
votes
1answer
85 views
Whoosh - performance issues with wildcard searches (*something)
I'm noticing that searches like *something consume huge amounts of cpu. I'm using whoosh 2.4.1. I suppose this is because I don't have indexes covering this search case. something* works fine. ...
0
votes
1answer
58 views
Haystack/Whoosh search for email address with at symbol?
I'm using a simple out-of-the-box Django/Haystack/Whoosh setup only for autocomplete purposes and everything works fine except for trying to search for an email address. If I type in joe, I will get ...
0
votes
1answer
200 views
Haystack's SearchQuerySet().filter not doing anything (Whoosh 2.4.1, Django-haystack 1.2.7)
views.py (relevant part)
srch = request.GET.get('search', "")
sqs = SearchQuerySet().filter(has_title=True)
clean_query = sqs.query.clean(srch)
results = sqs.raw_search(clean_query)
...
5
votes
1answer
229 views
Spelling correction for person names (Python)
I have a large collection of person names (e.g. "john smith"). I want to look up people by name in it. However, some of the queries will be misspelled (e.g. "jon smth", "johnsm ith"). Are there any ...
0
votes
1answer
70 views
Django Haystack with Whoosh: Ignore characters when indexing/searching
I'm using haystack and whoosh to do provide search on my site, however, I need to index words that have square brackets or other characters in the middle of words ("fo[oba]r" for example) - is there a ...
0
votes
1answer
136 views
Whoosh returns empty results on heroku
I am using Haystack+Whoosh to build the search feature in my django project.
On localhost the search was working fine and it returned result. Although I sometime noticed it returned indexes of some ...
0
votes
0answers
95 views
PicklingError with haystack and whoosh backend
When calling ./manage.py rebuild_index I always get this error
Can't pickle <type 'function'>: attribute lookup __builtin__.function failed
Traceback:
File ...
0
votes
1answer
97 views
Django Haystack and Woosh not working on web requests but working on django shell on production server
On my production server, I'm not getting any search results with haystack when I search through the webpage, but it builds indexes correctly and I can retrieve results using the haystack api on the ...
0
votes
1answer
48 views
Whoosh <Hit{}> Issue
I'm working through the Whoosh Quick start guide, and everything seems to be working except that I can't quite replicate the results in the guide.
I'm up to the bit about the Searcher object and when ...
0
votes
1answer
56 views
Need Whoosh step by step setup process for Django project
I found the Whoosh search engine application which we can integrate with Django but I think it is really confusing me alot.
Is there any blog or page which explains with one example, like how Django ...
1
vote
1answer
127 views
Using Whoosh I am not able to search for documents with multiword queries.
Using Whoosh I am not able to search for documents with multiword queries. I used the And operator as depicted in http://packages.python.org/Whoosh/quickstart.html#the-searcher-object
but it shows ...
1
vote
1answer
145 views
Django Haystack autocompletion on two (multiple) fields
I use haystack 1.2.6 with Whoosh 2.4 and Django 1.3.
Let's say that we have the below model describing an hypothetical post.
Post(models.Model):
title = models.CharField()
body = ...
0
votes
0answers
97 views
Install Whoosh and django on heroku
I am trying to deploy my peroject on heroku which uses "Whoosh" search. The problem I get is when I do heroku syncdb I get it stating:
haystack.exceptions.MissingDependency: The 'whoosh' backend ...
3
votes
1answer
211 views
slow whoosh searches
I am getting close to 1000 search results in 15 seconds after having created a whoosh index with a simple schema and indexed 1.5 million records.
schema = Schema(tax_id=STORED, ...
0
votes
1answer
136 views
text searching with whoosh
I am tyring to test Whoosh for text searching and right now a simple contrived example is not working for me. I assume I am missing something here. In the following code I would expect it give a ...
0
votes
1answer
75 views
How can i filter with a stopword list in django haystack (whoosh)
I am making an api call where the user passes a string and the database is queried with that string. The correct results are returned but i want to add stopwords for different languages to use for ...
0
votes
0answers
136 views
Django: Using Haystack with Whoosh and PyStemmer
From the Whoosh documentation
If you compile and install the py-stemmer library, the PyStemmerFilter provides slightly easier access to the language stemmers in that library.
But I can't see ...
0
votes
1answer
66 views
How do we update a indexed document using the whoosh module when we have some fields that are not stored?
Schema(title=TEXT(analyzer=stem_ana, stored=True),
content=TEXT(analyzer=stem_ana, vector=True),
link=ID(stored=True),
meta=TEXT(analyzer=stem_ana),
path=ID(stored=True),
...
0
votes
1answer
55 views
How can I iterate over two or more template indexes with Haystack, Whoosh and Django
I was reading the docs and some questions around here and couldn't understand how can I return a query that has fields indexed in two different classes. Let me put the code below:
Here I have the ...
1
vote
1answer
119 views
Haystack and whoosh index size
I'm using django haystack + whoosh as search backend.
When i run index update it simple creating new index file with same size and index grow very fast (let's say my content changing fast and i want ...
1
vote
1answer
162 views
Haystack with Whoosh- Search Results Not Redirecting
I successfully installed whoosh and made it work with Haystack. Things are working fine but I'm facing one problem which is; after searching for a keyword and it print out the results, when I click on ...
2
votes
2answers
256 views
Finding the number of haystack results by model type?
Let's say I have 3 models (Note, Comment, Article) that I want to search using django-haystack and I setup 3 indexes like this.
class NoteIndex(SearchIndex):
text = CharField(document=True, ...
1
vote
1answer
315 views
Smart string search python (maybe) using whoosh
I need to make a search method that is a little smarter than the find() in python. Something that could find similar words more like a search engine. I heard of Whoosh, installed it, but I couldn't ...
1
vote
1answer
18 views
Whoosh groupping by time interval
I have the following structure and is indexed using Whoosh.
timestamp name count(b.name)
------------------- ---- -------------
2010-11-16 10:32:22 John 2
2010-11-16 10:35:12 John 7
...
1
vote
0answers
446 views
Django haystack autocomplete not working
I'm using haystack 1.2.7 + whoosh 2.4.0 in Django 1.4 (Python is 2.7)
my settings:
HAYSTACK_SITECONF = 'verticalsoftware.search.search_sites'
HAYSTACK_SEARCH_ENGINE = 'whoosh'
HAYSTACK_WHOOSH_PATH = ...
4
votes
1answer
228 views
Django Haystack random errors using Whoosh
I am using django-haystack and Whoosh on my Ubuntu server and finding that certain search queries just raise an error page, and I have no idea why this is happening...
I am using the following ones
...
0
votes
1answer
297 views
Haystack searching multiple fields
I am currently building a page in django, where there are 4 form fields, 2 text, 2 select fields, and when submitted it takes those fields and searches several models for matchinng items.
the model ...
2
votes
1answer
270 views
Django haystack, priority for some fields in search
I have a model like this:
class MyModel(models.Model):
desc1 = models.TextField(blank=True, default="")
desc2 = models.TextField(blank=True, default="")
I want to search string on fields of ...
1
vote
2answers
64 views
Django Haystack Errors on certain keywords
I use haystack and whoosh in my platform and it runs on an hourly basis indexing my content.
I have found that with certain strings it raises a VariableDoesNotExist: Failed lookup for key [object] in ...
