whoosh Questions

2

Solved

Hi i m using haystack with a woosh as search engine: my model looks as follows class Person(models.Model): personid = models.IntegerField(primary_key = True, db_column = 'PID') firstname = mod...
Ene asked 12/8, 2010 at 16:39

5

Solved

I've built up a large database of banks in MongoDB. I can easily take this information and create indexes with it in whoosh. For example I'd like to be able to match the bank names 'Eagle Bank &amp...
Concepcion asked 15/7, 2011 at 15:55

1

I wonder why whoosh is kinda slow with the following code. Especially the commit takes quite a long time. I tried to use limitmb=2048 with the writer instead of the default 128, but it makes almos...
Yoko asked 17/6, 2014 at 11:3

2

I have a simple setup with django-haystack and whoosh engine. A search yielding 19 objects took me 8 seconds. I used the django-debug-toolbar to determine that i had a bunch of repeated queries. I...
Semiliquid asked 24/8, 2015 at 13:16

4

Solved

Does anyone have any experience using django-haystack with the whoosh backend? I'm looking to use it for a categorized live-search type tool. Is it gonna be fast/efficient enough in a production e...
Silkworm asked 8/6, 2009 at 22:52

1

I'm pretty new to search implementation, bear with me while I'm learning! So my pet project is a recipe site and each recipe can have n steps. the model looks something like: class Recipe(models....
Bigname asked 26/6, 2017 at 20:20

3

Solved

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 "g...
Parabolic asked 23/1, 2013 at 12:0

3

Solved

I am trying to use Haystack and Whoosh with my Django app. I followed the steps on Haystack docs, but i am getting this error when i do a search AttributeError at /search/ 'module' object has no a...
Agriculture asked 3/1, 2016 at 12:32

2

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 th...
Guadalupeguadeloupe asked 10/5, 2012 at 16:59

1

Hi I am running a flask app with a postgreSQL database. I get LockErrors when using multiple workers. I learned that this is because the whoosh search locks the database http://stackoverflow.com/...
Biceps asked 22/4, 2016 at 19:47

1

Solved

Hi I am using gunicorn with nginx and a postgreSQL database to run my web app. I recently change my gunicorn command from gunicorn run:app -w 4 -b 0.0.0.0:8080 --workers=1 --timeout=300 to gu...
Chatman asked 14/4, 2016 at 19:57

2

I've added a MultivaluedField to my index (haystack), I need to search for a ManyToMany related field, but it doesn't work. The engine is WHOOSH. This how my index looks like: class PostIndex(Sear...
Yesterday asked 27/8, 2010 at 6:55

1

Whoosh is a fast, featureful full-text indexing and searching library implemented in pure Python (official website). But I cannot find any speed / performance comparison to other search engine, esp...
Charin asked 17/3, 2015 at 15:19

2

Solved

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 = models.TextFiel...
Dispread asked 4/9, 2012 at 11:29

1

Solved

I'm trying to make a search in my django app then i used haystack and whoosh but i faced some troubles. first when i tried to rebuild_index or update_index it gives me this error right down below, ...
Hexastyle asked 27/3, 2014 at 17:29

1

I'm trying to run a search on a model that has a many to many field, and I want to filter the search using this field. here is my current code: search_indexes.py class ListingInex(indexes.Sear...
Kindred asked 9/10, 2013 at 6:27

1

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...
Reider asked 3/12, 2012 at 19:23

2

Solved

I'm using haystack with whoosh as backend for a Django app. Is there any way to view the content (in a easy to read format) of the indexes generated by whoosh? I'd like to see what data was indexe...
Driedup asked 7/3, 2010 at 8:48

1

I'm trying to use whoosh to add search functionality to my blogapp on appengine but I don't understand some stuff. The blogentries are indexed with title, content and status fields. I would like ...
Urbane asked 2/5, 2011 at 21:6

3

Solved

I am a newb coder in a startup and I am implementing search of documents in a directory in a web host. I am comparing Lucene/Solr, Whoosh, Sphinx and Xapian. Whoosh is natively python. But I...
Gammon asked 17/7, 2011 at 15:4

1

Solved

I am looking for a document search engine (like Xapian, Whoosh, Lucene, Solr, Sphinx or others) which is capable of searching partial terms. For example when searching for the term "brit" the sea...
Syncrisis asked 26/4, 2011 at 5:32

1

Solved

I was reading the 'Getting Started' guide of Haystack and tried to implement Whoosh backend for my website with Haystack. I was successful in setting up the whole project and I can also see the sea...
Diapophysis asked 2/4, 2011 at 20:49

4

I need to do full text searching with Google App Engine. I found the project Whoosh and it works really well, as long as I use the App Engine Development Environement... When I upload my applicatio...
Aalii asked 22/6, 2009 at 19:31

1

Solved

I've read the getting started documentation and several other examples on the web. And this is what my search_indexes.py looks like: from haystack.indexes import * from haystack import site from m...
Hexahedron asked 1/10, 2010 at 16:20
1

© 2022 - 2024 — McMap. All rights reserved.