Tagged Questions

Zend Search Lucene is a PHP library for creating and searching full text indexes using the Lucene index format.

learn more… | top users | synonyms

8
votes
1answer
336 views

zend lucene problem with the word “mortgage”

I'm using Porter Stemmer to stem the words, and here's a problem I'm running into: Word "mortgage" is correctly stemmed to "mortgag" Word "mortgagee" is (arguably incorrectly) stemmed to "mortgage" ...
7
votes
1answer
1k views

Zend_Search_Lucene vs SOLR

I have recenlty stumbled into Zend Lucene port of Lucene project. I have a little bit experience with SOLR so I would like to know what is the difference between two of them especially from ...
5
votes
2answers
667 views

Using Solr and Zends Lucene port together

Afternoon chaps, After my adventures with Zend-Lucene-Search, and discovering it isn't all its cracked up to be when indexing large datasets, I've turned to Solr (thanks to Bill Karwin for that :) ) ...
5
votes
1answer
565 views

Performance and bottle neck of Zend_Search_Lucene?

I've been using nutch for a while,untile recently that I know about this resort. How is its performance,and what's the file size limit it can support? Besides,how to delete or update an index ...
4
votes
1answer
138 views

Zend Lucene query

I'm adding these fields when I store data in Lucene: $index->addField(Zend_Search_Lucene_Field::Keyword('id', $entry->id)); $index->addField(Zend_Search_Lucene_Field::Keyword('type', ...
4
votes
2answers
534 views

Zend Lucene or sphinx?

I am building a system that has database operations that has millions of records.I am using Zend Framework in all part of my project.I wanted to use a search indexing technique but have you got any ...
4
votes
1answer
589 views

Creating and updating Zend_Search_Lucene indexes

I'm using Zend_Search_Lucene to create an index of articles to allow them to be searched on my website. Whenever a administrator updates/creates/deletes an article in the admin area, the index is ...
3
votes
1answer
77 views

Best way to perform online re-indexing of tables for Zend_Search_Lucene-powered search

I'm using Zend_Search_Lucene for full-text search of records in several different tables in my application. I have just implemented this functionality, and currently the index is built upon first use ...
3
votes
2answers
1k views

performance comparision between Zend Lucene and Java Lucene

Zend Lucene and Java Lucene are built in PHP and java repectively, and PHP language has a higher level than java. Just wondering How big the performance difference among these two, regarding to index ...
3
votes
3answers
381 views

Zend Lucene - cannot search numbers

Using Zend Lucene I cannot search numbers in description fields Added it like this: $doc->addField(Zend_Search_Lucene_Field::Text('description', $current_item['item_short_description'], ...
3
votes
3answers
430 views

Indexing large DB's with Lucene/PHP

Afternoon chaps, Trying to index a 1.7million row table with the Zend port of Lucene. On small tests of a few thousand rows its worked perfectly, but as soon as I try and up the rows to a few tens ...
3
votes
2answers
519 views

Zend Lucene - tokenizing swedish chars

I use Zend Lucene to index swedish texts. The problem is that lucene tokenizes words at swedish chars åäö. For example the word "världens" becomes two words "v" and "ldens" in the index. Is there a ...
3
votes
2answers
815 views

Does Zend Lucene need Java Lucene?

When implementing Zend Lucene, do we need to install Java on our server or not?
3
votes
4answers
773 views

How to find “FooBar” when seaching “Foo Bar” in Zend Lucene

I'm building a search function for a php website using Zend Lucene and i'm having a problem. My web site is a Shop Director (something like that). For example i have a shop named "FooBar" but my ...
2
votes
1answer
52 views

Zend_Search_Lucene count() failed after addDocument() in another place

in my bootstrap: protected function _initLucene() { Zend_Search_Lucene::create(APPLICATION_PATH . '/lucene')->setDefaultSearchField('userName'); } in my data mapper: public function test1() { ...
2
votes
3answers
59 views

How to invoke method by name?

I want to pass a row object to a function that uses the configuration information stored in the row to build a Zend Search Lucene Document and add it to my index. The information stored looks like ...
2
votes
1answer
129 views

Zend lucene - searching in text files

I am currently working on a personal project where I am reading scanned documents using tesseract and storing the content as text files. I keep both the text files and the jpeg files in my web's ...
2
votes
1answer
260 views

Remove Stopwords before indexing or after retrieving using zend-search-lucene

I just started using zend-search-lucene,i need suggestion how to remove the stop words while indexing or while retrieving the search results.
2
votes
1answer
626 views

invalid characters for lucene text search

On my IndexController i have public function buildAction() { $index = Zend_Search_Lucene::create(APPLICATION_PATH . '/indexes'); foreach ($this->pages as $p) { $doc ...
2
votes
0answers
262 views

Efficient, database-independent PHP implementation of geospatial index? Zend_Search_Lucene extension?

I'm storing lat/lon information in a MySQL database, which doesn't have great geospatial search support. I'm already maintaining a separate Lucene text search index for efficient full text search, so ...
2
votes
1answer
262 views

Zend lucene content field

I have indexed a site using Nutch and now I am searching the index using the Zend Lucene library. I've actually pulled the Zend libraries into Codeigniter but it is all Zend doing the work. I can ...
2
votes
1answer
500 views

Zend Search Lucene and Accented Characters

I'm trying to find a way in Zend_Search_Lucene to pull off the following scenario: Let's say we have a user and her name is Aïcha (note the special character). If I'm searching the index for Aicha ...
2
votes
1answer
464 views

Can zend's lucene implementation be configured to use a mysql database instead of the file system?

Is there an option for Zend's lucene implementation (or a third-party plugin) that would allow me to put the lucene dictionary into a [MySQL] database? The reason I need to ask is that the database ...
2
votes
1answer
158 views

Zend_Search_Lucene and range search

I have a bunch of int key fields in my index and trying to do a simple range search like this: `gender:1 AND height:[120 TO 180]` This should give me male in the height range 120 to 180. But for ...
2
votes
1answer
236 views

Zend: index generation and the pros and cons of Zend_Search_Lucene

I've never came across an app/class like Zend Search Lucene before, as I've always queried my database. Zend_Search_Lucene operates with documents as atomic objects for indexing. A document is ...
2
votes
1answer
522 views

Zend_Search_Lucene query parsing problem

Here's the setup, I have a Lucene Index and it works well with the 2,000 documents I have indexed. I have been using Luke (Lucene Index Toolbox, v.0.9.2) to debug queries, and am using ZF 1.9. The ...
2
votes
2answers
980 views

Zend Lucene fails all searches with special characters. Halp?

Hey, if anyone knows a simple answer to this, I don't have to wade through creating an extra index with escaped strings and crying my eyes out while littering my pretty code. Basically, the Lucene ...
2
votes
2answers
507 views

Zend_Search_Lucene - Can't create directory '/data/users_index'

I have a problem creating an index with Zend_Search_Lucene. Now, everything works fine on my local machine so I guess there is just an issue with file permissions on the webserver. Here is how I'm ...
2
votes
3answers
1k views

How do you search zipcodes using Zend Lucene?

I have very simple company index with Zend Lucene using this to create the index: // store company primary key to identify it in the search results ...
1
vote
1answer
72 views

Zend_Search_Lucene: UTF-8 madness

I hat some problems with Zend_Search_Lucene and non-english characters such as the german ÄÖÜ. My database returns UTF-8 formatted strings so I thought everything will work just fine. After having ...
1
vote
2answers
189 views

Zend_Search_Lucene implementation with Symfony2 returning empty result

I have an implementation of Zend_Search_Lucene within a Symfony2 application. I am using Zend 1.11. The index seems to be being created, I have several files including: _0.cfs optimization.lock.file ...
1
vote
0answers
39 views

Zend Lucene exhausts memory when indexing

An oldish site I'm maintaining uses Zend Lucene (ZF 1.7.2) as it's search engine. I recently added two new tables to be indexed, together containing about 2000 rows of text data ranging between 31 ...
1
vote
1answer
93 views

zend search lucene query api: boosting a term

I am using zend search lucene, and would like to add boosts to some of my search terms. The code is already written using the query construction API as follows. $query->addTerm(new ...
1
vote
1answer
77 views

Using different analyzers on Zend Lucene

I'm trying to create an index using Zend Lucene. In Zend's manual (http://framework.zend.com/manual/en/zend.search.lucene.extending.html) it is described how to use a default analyzer: ...
1
vote
3answers
254 views

How to cache Zend Lucene search results in Code Igniter?

I'm not sure if this is the best way to go about this, but my aim is to have pagination of my lucene search results. I thought it would make sense to run the search, store all the results in the ...
1
vote
2answers
84 views

Do I have to convert my PHP app into MVC in order to use Zend_search_lucene?

I have finished writing my own web application now. It is written in PHP with MYSQL DB and I did not use any MVC framework at all. Now I want to add a local search functionality for my app and from ...
1
vote
2answers
654 views

Which way you recommend zend lucene search with php or lucene itself and port with php?

We are in development of a classifieds website, which you might already know that we need a really good search engine. Filtering menu on the left side is a MUST in our project. Anyway, I am asking if ...
1
vote
1answer
88 views

Zend_Search_Lucene, return results based on specified type_id

What I want to do is be able to filter the returned results to a specific type_id. First I index all the articles I want to be searchable. SELECT article_id, article_name, article_body, ...
1
vote
1answer
140 views

How to get zend_lucene and zend_paginator to work

I've been using Zend Framework for a few months now. So, my knowledge is pretty good but I'm not quite an expert yet. I am trying to use zend_lucene with zend_paginator and so far not successful. I am ...
1
vote
1answer
395 views

Migration from Zend_Lucene to Solr

In our project (based on Zend Framework) we have to find a replacement for default Zend_Lucene. Now I'm trying to implement Solr with PHP Solr Client in it. We have 2 tables, where we take the data: ...
1
vote
1answer
131 views

Indexing Adds/Changes not working using Lucene in Zend Framework

I am pretty new to programming and definitely to Zend/Lucene indexing. From what I can tell, though, my code is correct. I feel like I may be overlooking a step or something trying to upload changes ...
1
vote
0answers
106 views

Why is my search on 2 fields in Lucene (zend) failing?

So, I have two fields I am indexing: | NAME | TYPE | ------------------------------------- |Texas Steak | Restaurant | |Bone Digs Restaurant | Restaurant | |Rain Sushi | Restaurant | |Brazil ...
1
vote
1answer
560 views

CakePHP with Lucene

I am trying to implement Lucene with cakephp and following this guide http://jamienay.com/2010/01/zend_search_lucene-datasource-for-cakephp/ Am getting this error ConnectionManager::loadDataSource ...
1
vote
2answers
205 views

Regular expression for Text, Numbers and Decimals

I am trying to get a regular expression for text, decimals and decimal numbers. The expression must match all at once. The main problem is that I had to write an Analyzer for Zend_Search_Lucene in ...
1
vote
0answers
237 views

Get total record count for a query in zend lucene search?

HI I have used "setResultSetLimit(1000)" method to limit results to 1000 records. The good thing is It helps to save server resources, but there is noway to get full record count for a query. Is any ...
1
vote
1answer
178 views

Zend_Search_Lucene, how to share an index storage folder over network

I am running web application on two different servers with load balancing, and using Zend_Search_Lucene for indexing documents. Now I am facing indexing issue which a user comes to the site through ...
1
vote
1answer
249 views

Zend lucene : Multiple criteria on search = bad results

I new to lucene, and i noticed something annoying : In my search bar, if I type "USA" : return all the matches -> OK. If I type "Developper" : return all the matches -> OK BUT, -if i type "USA ...
1
vote
1answer
107 views

Zend_Search_Lucene changing term frequency problem

I am trying to update the searching of terms of documents within my Lucene index. Currently the searches score on the number of times the term appears in the document. What I would like to do is ...
1
vote
2answers
447 views

How to find similar/related text with Zend Lucene?

Say I need to make searching for related titles just like stackoverflow does before you add your question or digg.com before submitting news. I didn't find a way how to do this with Zend Lucene. ...
1
vote
1answer
129 views

Zend_Search_Lucene View entire Cache

Is it possible to view the entire cache in a laid out clear view of what is indexed?

1 2 3