The zend-lucene tag has no wiki summary.
0
votes
0answers
27 views
zend lucene search in start of title
it possible to sort search results by max close to start of search string?
My code:
private function termSearchIndex($query)
{
$query = trim($query);
$words = explode(" ", ...
4
votes
2answers
114 views
Zend Lucene Delete Document Issue
I am trying to delete a document using zend lucene. The following is my code
$index = Zend_Search_Lucene::open('data/index');
foreach ($index->find('pk:' . $this->getId()) as $hit) {
...
0
votes
1answer
54 views
How to(or Can I) delete the index file created by Zend_Search_Lucene
Is there any way by which I can delete the index file created by the Zend_Search_Lucene? If its not possible kindly suggest a method to delete the indexed data. I've tried it from the code. But ...
0
votes
0answers
153 views
Faceted search using Zend Lucene
I am working on a cake application with multiple models. For one of the model, I need to implement faceted search using associated models. For example, if the model is A and is associated with models ...
0
votes
2answers
265 views
Lucene Zend Fuzzy Match on Phrase instead of Single Word
I'm trying to use Zend Lucene for matching a query phrase, but I want a fuzzy match.
At the moment, if I use PhraseQuery and search for "valentin rossi", (and in DB there is "valentino rossi") I
...
0
votes
2answers
367 views
php foreach repeating twice
I have been trying different solutions for this problem without success. Problem is this:
I have some results form Zend_Search_Lucene which give say 3 results with the ID of: 2, 3, 4
Then I have ...
-4
votes
1answer
190 views
what is good alternative for Lucene search?
I have thousands of Cvs and I want to search for the CVs having 'computer science' as their background.
So, I googled and got to know that Lucene does this job and I need to feed the data to Lucene ...
0
votes
1answer
41 views
Problems with Zend_Lucene when using Routes
I have implemented Zend_Lucene in my first Zend Framework Project, but since I have implemented Routes the Search Results does not seem to work anymore.
In my Search Result view, I have changed the ...
1
vote
1answer
107 views
searching only in undeleted documents using zend lucene
i am not new with zend lucene but i have a trouble with searching using it.
i search in documents by numbers using below code
$term = new Zend_Search_Lucene_Index_Term($id, $idFieldName);
$docIds = ...
0
votes
1answer
87 views
Search by number in zend lucene
I read some articles about searching in indexes by numbers, but it does not work for me yet.
more::
i need to search in my documents by number but it does not work.
i create the docuemnt:
...
0
votes
1answer
130 views
How does Zend Lucene handle numeric range searches?
I have this fields in the index
id name genders ages
1 "John Doe and Co." "male male" "18 20"
2 'Mr. and Mrs. Joe Dee' "male female" "25 27"
and ...
0
votes
1answer
324 views
Zend Lucene and range search on a field with multiple values
Say my index contains documents with a field called "ages". Example entries for "ages" field:
25
24, 28
25, 31
How would I query this so that I get all the documents whose fields contain ages ...
1
vote
1answer
392 views
Lucene search stopped working with symfony
SOLVED
Looks like working when you're very tired is not the same as working after you had a good night's sleep. The problem was with the files inside the prod.dev.index. They were missing. I ...
1
vote
0answers
112 views
Getting content/excerpt from zend lucene search result
Im implementing zend-lucene search on my site, and I have indexing going well, and I can search.
But the results just come back with the records that have a hit in order of score without the content ...
2
votes
2answers
114 views
Zend Lucene - how to build an index for Calendar application?
I am building an app that has a Calendar in which users can annotate events.
The Calendar is private to each user, that is, user A cannot see the events on user B's calendar.
I would like to index ...
1
vote
1answer
156 views
Does the Zend lucene search engine work with just Zend Optimizer?
I got it working locally but had to install the whole Zend framework, I am about to try to get this working on my unix server which has Zend Optimizer. I did php -m to check and was wondering if I ...
0
votes
1answer
156 views
Lucene: how to search EAV or 1:m?
I'm using Zend Lucene, but don't think the question is specific to that library.
Say I want to provide fulltext search for a database of books. Assume following models:
Model 1:
TABLE: book
- ...
0
votes
2answers
168 views
Conditions in Zend Lucene
We have a location based service in our company. The content can be searched through mobiles precisely for the user's location. This search consist of distance search using the following formula
...
1
vote
0answers
299 views
Zend_Search_Lucence - Wildcard search is supported only for non-multiple word terms?
I am trying to implement Zend_Search_Lucene. I have implemented it with following condition:
searchword*
searchword
case insensitive
But some times I am getting error as "Wildcard search is ...
0
votes
2answers
376 views
PHP Zend Lucene Search Query with multiple criteria fail
Zend Lucene Search Document
Lucene Document
pk:Keyword
category_id:Keyword
title:UnStored
description:UnStored
This is my string query "java lucene AND +category_id:7".
Result ...
1
vote
1answer
457 views
Custom Search Engine on Zend Framework
We are building a Social Networking website and there are videos, user profiles and other details on the site. The site is developed using Zend Framework. It needs to develop a Site Search Engine ...
1
vote
1answer
230 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
1answer
180 views
Why Zend Lucene returns all hits if nothing is found?
I have this query: +document_type:client name:something to search and if something to search is not found the Zend Lucene returns all documents containing +document_type:client and I would like to ...
0
votes
1answer
307 views
Symfony search form
I use symfony 1.4.12 with Zend Lucene. And I make custom search, I have field like category, country...I create module and I have MysearchSucess.php and there I write hardcode, like :
<select ...
0
votes
2answers
198 views
Facing Issue in zend_search_lucene
I am using zend lucene search, Below is piece of code ,
......
$results = $test->fetchAll();
setlocale(LC_CTYPE, 'de_DE.iso-8859-1');
...
2
votes
1answer
376 views
Indexing Related Entities Using Zend Lucene
I have set up search in my application, but wish to expand it to index properties related in a one-to-many way. For instance, a person can have many usernames, so they have to be kept separate, as in ...
0
votes
2answers
86 views
Can I build Lucene database using .NET then use ZendFramework to read that database later?
I have a SQLSERVER database and I want to implement the search feature on PHP. I am just wondering if I can use .NET language (since there is .NET library available) to build Lucene index database ...
0
votes
1answer
113 views
Array as index for Zend_Search_Lucene_Field
This is what works:
$doc->addField(Zend_Search_Lucene_Field::text('Image', $item['Image']['localName']));
which indexes the field, and it's accessible later in my view helper as this:
...
0
votes
2answers
349 views
Symfony and Zend Lucene Error
I use symfony with Zend Lucene Search. I have
$query = Zend_Search_Lucene_Search_QueryParser::parse($query.'*');
$hits = self::getLuceneIndex()->find($query);
Sometimes I have error :
At least ...
0
votes
1answer
467 views
Zend_lucene search with accents
I'm working on a search engine for a French website with Zend_Search_Lucene as a standalone component. Everything works well on my local webserver (WAMP) on windows, but the search with accented words ...
0
votes
1answer
492 views
Class 'Zend_Search_Lucene' not found
A big beginner of Zend-framework on PHP calls, I could include it on Netbeans IDE. Now I'm trying to use it to achieve a Lucene indexer and searcher using Zend_Lucene, I followed the getting started ...
3
votes
1answer
152 views
Where are the index files of Zend Lucene?
the first time I indexed my data this way
$index = new Zend_Search_Lucene('/tmp/search_index', true);
This created a tmp/search_index folder in the public folder of my project. After I noticed ...
1
vote
1answer
1k views
Symfony and Zend Advanced Search Lucene
I use Symfony 1.4.11. I added search to my project, like in Jobeet tutorial. But I need to also make advanced search. For example, the user can іудусе "county" and "category". I make form and I read ...
1
vote
1answer
190 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 ...
2
votes
1answer
1k 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 ...
4
votes
2answers
775 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 ...
2
votes
1answer
330 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 ...

