[symfony-users] Re: Lucene-Search

2010-06-02 Thread comb
Do you use Lucene or Doctrines Searchable-behavior? On 2 Jun., 17:06, f1gm3nt wrote: > I'm using it for one of my web sites, I used the example that was > included in the tutorial, then customized it to what I need. Need to > go over it again see if I can optimize it any. > > I also made 2 symfon

[symfony-users] Re: Lucene-Search

2010-06-02 Thread f1gm3nt
I'm using it for one of my web sites, I used the example that was included in the tutorial, then customized it to what I need. Need to go over it again see if I can optimize it any. I also made 2 symfony tasks, the first rebuilt the index and the second optimized it. As mentioned before, it can b

[symfony-users] Re: Lucene-Search

2010-06-02 Thread comb
Thanks! I'm going for the doctrine searchable behavior. Here is what I found useful to keep in mind for maybe later purpose: This thread here: http://groups.google.com/group/symfony-users/browse_thread/thread/8c24a4e37c9cadf8 Doctrine Behavior Searchable: http://www.doctrine-project.org/projec

[symfony-users] Re: Lucene-Search

2010-06-01 Thread pghoratiu
> @pghoratiu: Yeah I know about Solr, but I cannot use it, like I wrote > in the first post :-( > > Is there an alternative PHP-Search-Engine to Zend Lucene? Sphinx is a good alternative, I did not use it personally but my colleagues have and they are content with it. It very much depends on

[symfony-users] Re: Lucene-Search

2010-06-01 Thread Casey
Sphinx is the best full text search that I have ever used. You need to have enough permissions to compile/install a program running as a daemon though. Sphinx is very fast, not language or database specific and has flexible configuration options, technically speaking, you don't even have to use a

[symfony-users] Re: Lucene-Search

2010-06-01 Thread comb
@MichaƂ Piotrowski: Thanks for the tipp! :-) @pghoratiu: Yeah I know about Solr, but I cannot use it, like I wrote in the first post :-( Is there an alternative PHP-Search-Engine to Zend Lucene? On 1 Jun., 21:53, pghoratiu wrote: > Lucene is not slow, only the Zend PHP re-implementation of the

[symfony-users] Re: Lucene-Search

2010-06-01 Thread pghoratiu
Lucene is not slow, only the Zend PHP re-implementation of the Lucene file format + search. In my opinion it's close to unusable for real life scenarios (large data set, fast indexing ...). It probably would work ok for a small dataset such as < 1. I recomend Solr as alternative which is Java