Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
67 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 ...
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 ...
2
votes
2answers
44 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 ...
2
votes
1answer
274 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 ...
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 ...
1
vote
1answer
44 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 ...
1
vote
0answers
75 views

zend lucence search - Wildcard search is supported only for non-multiple word terms?

I am trying to implement zend lucene. I have implemented it with following condition, 1.searchword* 2.searchword 3.case insentive But some times i am getting error as "Wildcard search is supported ...
1
vote
1answer
77 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
74 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
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
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 ...
0
votes
0answers
14 views

debugging symfony rsLucene sfPropelActAsStarredBehavior

I adopted a symfony project that uses the rsLucene plugin. When I try to run ./symfony lucene:generate, I get the following error: $ ./symfony lucene:generate >> Task start lucene index ...
0
votes
1answer
19 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
66 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 ...
0
votes
1answer
62 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 ...
0
votes
0answers
32 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 ...
0
votes
0answers
38 views

Issues Integrating Zend Lucene to CakePHP 2.0

I'm running into problems making Zend Lucene work on my web application. I tried following this http://jamienay.com/2010/01/zend_search_lucene-datasource-for-cakephp/ and this CakePHP with Lucene but ...
0
votes
1answer
41 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
1answer
50 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 ...
0
votes
2answers
71 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 ...
0
votes
1answer
66 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
0answers
33 views

PHP: Zend:Lucene indexing hostnames

First: Sorry for the bad eng... Second: I wanna indexing and search hostnames with ZendLucene. A standard hostname look like this: ghabas.bar.foo.ws To index it I use this code (parts): ...
0
votes
0answers
29 views

Get Model or Object from Result using rsLucenePlugin

I have recently started using the rsLucenePlugin, designed to mimic sfLucenePlugin which dropped support for Propel and does not work with later versions of Symfony. I would like some way of ...
0
votes
1answer
93 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
0answers
77 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'); ...
0
votes
2answers
46 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
40 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
1answer
108 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
156 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
138 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 ...
0
votes
1answer
448 views

Symfony and Zend Advanced Search Lucene

I Symfony 1.4.11 . I make search in my project , like in Jobeet tutorial . But I need also make advanched search. User can іудусе "county" and "category" .I make form and I read this tutorial. I found ...