You cannot post messages because only members can post, and you are not currently a member.
Description:
A list devoted to the development and support of Haystack, a search app for Django featuring pluggable backends.
|
|
|
prepare_FOO not working with simple backend
|
| |
Hello list,
I'm trying to implement a search_index that doesn't use faceting if
there is the simple backend instead of elasticsearch. It looks like,
when the simple backend is enabled, he's not compiling the fields that
have prepare_FOO method. (with elasticsearch everything works
perfectly)... more »
|
|
Change pagination settings.
|
| |
Hi everybody.
I'm doing the haystack integration on my project using whoosh, but
now, a have a problem... I need to change the settings of the default
haystack paginator. (I need to show 12 results per page).
Some ideas?
Then, i want to know if there is some way for obtain a queryset with... more »
|
|
autoComplete is now working
|
| |
I have two modle here :
class StockSymbol(models.Model):
symbol = models.CharField( max_length = 15 )
exchange = models.CharField( max_length = 15, blank=True, null=True )
companyName = models.CharField( max_length = 40 )
def __unicode__(self):
return self.companyName... more »
|
|
bounding box intersection query
|
| |
Hello list,
I'm trying to implement a bounding box intersection query. By bounding
box I mean that on the database I have the 4 coordinates of a
rectangle and I want to select all the entries that intersect another
bounding box coming from the application.
The query that I need to run is something like this:... more »
|
|
Backend interface
|
| |
Hi all, after a long time I'm back on the case trying to rewrite the way-out-of-date Whoosh backend. I think I understand a little more about Haystack this time around, but I'm hoping people familiar with the backend interface can help me out a bit with some of the internals.
Unfortunately both the existing code and the documentation are unclear in a few places regarding what is being passed in the arguments to the backend methods, and I seem to be preternaturally unable to set up a working Django project to play with them, so if anyone can tell me about the following, I'd appreciate it.... more »
|
|
A query parser for haystack
|
| |
Hi, we have created a Search query parser, that can be used with haystack, it returns a SQ object, for more details look at: [link] feel free to use it, -vignesh Thanks
|
|
rebuild_index command not working
|
| |
Hello:
I am in the process of migrating and app from one server to another
and encountered a bit of a head scratcher. First, here are a couple
details about the environment, in case that's handy:
OS: Ubuntu 12.04LTS
Django: 1.3.1
Haystack: 1.2.7
Solr: 3.5.0 (? pretty sure)
After I setup the virtualenv and got my Django apps working, I went... more »
|
|
Support for Asian languages
|
| |
Hi, I'm using Haystack together with Solr as the search engine for my bookmarking site kippt.com. It seems that Haystack's auto_query doesn't work automatically with Japanese and Chinese as the characters are together. Is there a an easy way around this? Our content is usually only in one language but we don't try to figure out the language so we don't... more »
|
|
facets count per query and not per page
|
| |
Hi, I just found that the facets count changes as I move through the pages of haystack pagination system. I also found that even the facets changes, that is, in one page appears 2 facets for "brand" facet (e.g., Amanco, Tigre) and when I move to the next page, 3 facets appear (e.g., Amanco, Tigre, Tupy). This is because in that... more »
|
|
|