umentation to django-sphinx. I dont know... maybe I just dumb lol
So my question would be: How can I specify another column as DOC id in
django-sphinx?
Regards
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this
We are in the process of switching from a custom Xapain installation
to Solr as we found Xapian quite limited in its ability to do
faceting, spelling suggestions, or highlighting. If you don't need any
of those things, I would recommend Xapian (although I've not used it
through Haystack). I have us
Hi!
zweb wrote:
> 2) Sphinx has slow index update. Updating index takes as much time
> as building a new one.
I have a Sphinx indexed form with 2 million posts. Indexing takes mess than
2 minutes. Is that considered slow? I use full rebuild of the index even 10
minutes. Incremental reindexing i
eb wrote:
>
> > (Mysql text search will not work as I use INNODB. Solr is powerful but
> > I heard it is very memory hungry and it is in Java. Whoosh is not yet
> > as mature as others. So that leaves choice between Django Sphinx and
> > Haystack Xapian.)
>
> I meant
I am tilting towards Haystack Xapian solution over django sphinx
mainly for two reasons
1) Haystack supports - Solr, Xapian and Whoosh. So in future I can
easily migrate from Xapian to Solr as my need grows.
2) Sphinx has slow index update. Updating index takes as much time
as building a new
On Sat, Jun 19, 2010 at 9:21 AM, zweb wrote:
>
> (Mysql text search will not work as I use INNODB. Solr is powerful but
> I heard it is very memory hungry and it is in Java. Whoosh is not yet
> as mature as others. So that leaves choice between Django Sphinx and
> Haystack Xapian
On Sat, Jun 19, 2010 at 9:21 AM, zweb wrote:
> I need to implement search solution over models in mysql.
>
> Anyone has experience with both or has gone through same decision
> making?
>
> What should I consider before choosing one or other?
I'm making a similar decision... as far as I can see,
is in Java. Whoosh is not yet
as mature as others. So that leaves choice between Django Sphinx and
Haystack Xapian.)
thanks
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-us...@googlegrou
dify sql_query
accordingly.
Also great article can be found here:
http://www.marcofucci.com/tumblelog/31/aug/2009/django-sphinx-search-...
I've discussed this foreign key search with author of that article,
Marco Fucci, and he helped me really a lot to understand the way
Sphinx works.
Hope it hel
ql_query
accordingly.
Also great article can be found here:
http://www.marcofucci.com/tumblelog/31/aug/2009/django-sphinx-search-different-models-m2m-fields/
I've discussed this foreign key search with author of that article,
Marco Fucci, and he helped me really a lot to understand the w
I am looking to provide search. All content is in MYSQL DB in innodb
tables. That rules out Mysql full text search option, which would have
been my first choice.
Other option I am looking at it is Sphinx search with django-sphinx.
Any experiences with it good and bad?
Other thing I looked at is
arching TextFields but I have a problem with ForeignKey field.
>>>
>>> >> How can i do that? Can anyone point me to the right direction?
>>>
>>> >> Thanks
>>>
>>> >> Model example:
>>>
>>> >> class Model1
oblem with ForeignKey field.
>>>
>>> >> How can i do that? Can anyone point me to the right direction?
>>>
>>> >> Thanks
>>>
>>> >> Model example:
>>>
>>> >> class Model1(models.Model):
>>>
>>> >>
;> searching TextFields but I have a problem with ForeignKey field.
>>
>> >> How can i do that? Can anyone point me to the right direction?
>>
>> >> Thanks
>>
>> >> Model example:
>>
>> >> class Model1(models.Model):
>>
>
>> text_field =models.TextField(max_length=250)
> >> fek_field = models.ForeignKey('Model2')
>
> >> class Model2(models.Model):
> >> text_field = models.TextField(max_length=250)
>
> >> --
> >> View this message in
>
s.ForeignKey('Model2')
>>
>> class Model2(models.Model):
>> text_field = models.TextField(max_length=250)
>>
>> --
>> View this message in
>> context:http://old.nabble.com/Django-Sphinx-Foreign-key-search-tp28219147p282...
>> Sent from
be up and running basic searches of your django models
> in a matter of minutes. In the case of the foreign key field, with
> haystack, you could just include texts from related Model1s in the
> search template for Model2. That's of course a tad wasteful in some
> ways, b
ts from related Model1s in the
search template for Model2. That's of course a tad wasteful in some
ways, but OTOH might be exactly what you want.
I don't use django-sphinx so I'm not clear how to do it there, but
a conceptually related approach does work with raw sphinx app
> class Model2(models.Model):
> text_field = models.TextField(max_length=250)
>
> --
> View this message in
> context:http://old.nabble.com/Django-Sphinx-Foreign-key-search-tp28219147p282...
> Sent from the django-users mailing list archive at Nabble.com.
--
You received this me
Field(max_length=250)
fek_field = models.ForeignKey('Model2')
class Model2(models.Model):
text_field = models.TextField(max_length=250)
--
View this message in context:
http://old.nabble.com/Django-Sphinx-Foreign-key-search-tp28219147p282...
Sent from the django-users mailing
Field(max_length=250)
fek_field = models.ForeignKey('Model2')
class Model2(models.Model):
text_field = models.TextField(max_length=250)
--
View this message in context:
http://old.nabble.com/Django-Sphinx-Foreign-key-search-tp28219147p28219147.html
Sent from the django-use
On Mar 30, 6:11 am, Alfonso wrote:
>
> And in my search view I have a simple filter (which is where I think
> the problem lies):
>
> if date == "next30":
> results = queryset.filter(date_time>=(datetime.datetime.now))
>
> (Attempting to pull future dates just to see something happen)
>
> W
Using sphinx for search in my django app and whilst it's great I can't
seem to get any date filtering happening. Sphinx conf is fairly
unremarkable:
source event_event_en : base
{
# main document fetch query
# mandatory, integer document ID field MUST be the first selected
column
me too, "BuildExcerpts"
I wanto to the reslut highligting
Thanks
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscr
I asked this question on the django-sphinx group a few days ago but so
far havent recievied any replies so i thought i would ask here. I'm
trying to use the passages function "BuildExcerpts" feature of sphinx
and have been unable to get it to work. Im not new to sphinx but i am
t
All fixed - anyone who stumbles across this error - update to the
latest trunk of django-sphinx and works fine!
On Jan 20, 1:23 pm, Alfonso wrote:
> Hello,
>
> I've used django-sphinx/sphinx engine in the past and found it a
> fantasic solution but now running into a problem
Hello,
I've used django-sphinx/sphinx engine in the past and found it a
fantasic solution but now running into a problem in a new build I
haven't seen before:
So sphinx is all set up and working and in the appropriate view I
have:
def search(request):
search_query = request.
e it helps
Anderson
On Oct 8, 2:37 pm, "Rob Sutherland" <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm working on setting up the sphinx search tool with django-sphinx
> and I have a few questions for any
> current users out there. First, while googling I see a lot
Hi,
I'm working on setting up the sphinx search tool with django-sphinx
and I have a few questions for any
current users out there. First, while googling I see a lot of links to
http://www.davidcramer.net/ which don't
resolve and I see that David Cramer is listed as the package
main
29 matches
Mail list logo