Zend Search Lucene is a PHP library for creating and searching full text indexes using the Lucene index format.
1
vote
0answers
39 views
zendframework/zendsearch package unavailable when trying to install it via composer
anyone please give me detail instructions on installing ZendSearch package as the official documentation is incomplete.. Zendsearch package unavailable when trying to install it via composer.
The ...
0
votes
0answers
22 views
Zend Lucene - Partial Match on Keyword
I have created a Zend Lucene search index using the following analyser:
Zend_Search_Lucene_Analysis_Analyzer_Common_TextNum_CaseInsensitive()
I have indexed part numbers using 'keyword':
...
0
votes
0answers
26 views
Indexing related record with Zend_Search_Lucene to improve search results
I'm using Zend_Search_Lucene to create an index of items to allow them to be searched. Each item belongs to a category and each item has many reviews.
At this point, I am only indexing items. But ...
0
votes
1answer
52 views
Difference between Lucene and Zend Search Lucene
Please is anyone know the difference between Zend Search Lucene and Lucene?
Thanks in advance.
1
vote
2answers
124 views
Install ZendSearch in ZF2 skeleton application
I'm trying to add Lucene search to my ZF2 project. The package is not listed on the ZF2 packages page. I tried to workaround this by installing it manually from GitHub.
I added this to my ...
0
votes
1answer
42 views
How to get a score of a Field on Zend Lucene
I have something similar to the following code:
[...]
while($result=mysql_fetch_assoc($query)){
//Build a doc
$doc = new Zend_Search_Lucene_Document();
[...]
...
0
votes
0answers
30 views
Lucene php library in distributed mode
Is there a way to make lucene php library distributed? I have lucene php library on one server I would like to make it so that other server can send data to that index dir. Not sure if there are locks ...
0
votes
1answer
33 views
How to control scoring and ordering in Zend_Search_Lucene, so one field is more important than the other?
From what I understand, after reading documentation (especially scoring part), every field I add has the same level of importance when scoring searched results. I have following code:
protected ...
1
vote
0answers
96 views
PHP Zend Lucene vs Java Lucene performance for file IO? [closed]
I am extending question further in more cause really confused.
1. PHP Zend Lucene vs Java Lucene which gives better performance in file operations? cause i have to update the index to often.
2. For ...
0
votes
1answer
69 views
Interfacing PHP with Lucene without changing anything
I am building a search engine. In this regard, I have built a Lucene indexer in Java and also built a web interface in PHP where the user will submit the query. As my search is geo-temporal specific, ...
0
votes
0answers
34 views
Integrating Lucene with PHP [duplicate]
I am building a search engine with web interface in PHP. For that I am indexing the underlying database with Lucene. Now the problem is that I have to integrate the indexed database with PHP web ...
2
votes
2answers
171 views
Include zend framework into php project zend_search_lucene
I've searched for many info on the internet, also tried many various suggestions, but nothing seems to work as I need. So here is the problem:
I want to use Zend_Search_Lucene to perform search in ...
0
votes
1answer
74 views
Solr 3.5 field type
I'm using Solr 3.5 in the application that I'm working currently. I have defined few field types as custom which would be a prefixed values.
Mostly they are price which differs for each and every ...
0
votes
1answer
39 views
How to get only documents which have one field not empty
I'm trying to do create a query to exclude all documents which have an empty/null value in one specific field.
What is the query syntax or the programmatic way to do this?
0
votes
2answers
165 views
How to use ZendSearch in Zendframework 2 with autoloader without zend application
I'm using Zend Framework 2 in a project with that code:
require_once APPPATH . "third_party/Zend/Loader/StandardAutoloader.php";
$loader = new StandardAutoloader(array('autoregister_zf' => ...
1
vote
0answers
58 views
When to create index and update document in Zend Lucene?
I fiddling around with Zend Lucene and I have a question on it. When do you create an index and update document in Zend Lucene?
Do you create an index whenever you add a new record / row and update ...
4
votes
1answer
93 views
What is the best way to properly integrate a “popularity” factor with zend-search lucene?
I've read this and I'm still a bit confused on how to exactly go about it.
I have an unindexed field that is counting the number of votes for a set of playlists that are being searched. The main ...
1
vote
1answer
155 views
Indexing and Searching Special Characters with Zend Search Lucene
When I search for special characters such as "#" no results come up.
Note that I have escaped the query string.
However, when combined with a letter like "c#" Lucene finds the term.
Is there any ...
0
votes
3answers
201 views
Symfony2 POST Request Required, Receiving GET Instead
I am trying to implement a search module with clean URLs. Something like www.website.com/search/searchterm. I have made a searchable index with EWZSearchBundle, so there is no database involved and ...
1
vote
1answer
62 views
Zend_Lucene: How to combine multiple terms?
I am searching in an index using two different approaches, one is working, one is not (but should be from reading the documentation). I am wondering what my mistake is.
Here is my first approach ...
3
votes
1answer
232 views
Notice: Undefined offset: in /my/Zend/ib/Search/Lucene/Index/SegmentInfo.php on line 641
I've a problem in indexing with Zend Search Lucene framework.
Our file repository has ~25000 files and I'm trying to index them. But during batch indexing, this error occurred:
Notice:
Undefined ...
0
votes
0answers
35 views
Zend_Search_Lucene is indexing the contents from another domain
I'm trying to implement a search engine with zend_search_lucene. There are so many links in my web-page and they are pointing to several web pages in different domains. The problem I'm facing here is ...
0
votes
1answer
55 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
1answer
59 views
Cannot retrieve value from the Zend_Search_Lucene index
$index = Zend_Search_Lucene::create($indexpath);
$doc = Zend_Search_Lucene_Document_Html::loadHTMLFile ($targeturl);
$title = $doc->title;
$body = $doc->body;
...
2
votes
3answers
191 views
Implement a search using zend
I have site which is managed using CMS entirely developed on zend. Now I have to Implement a search feature too. I'vent done anything related to search in zend. Some suggestions that I received is to ...
1
vote
1answer
2k views
Zend Framework 2 Search Lucene?
ZF1 had a gread search lucene implementation. is there something similar for ZF2? I can't find anything...
3
votes
2answers
1k views
Lucene Search in zf2
Has the Lucene Search library been removed from the ZendFramework 2? because I can't find it here
0
votes
0answers
95 views
Zend lucene iterative search in keyword field seems to be very slow
I use Zend_Search_Lucene. The documents I added contain three "Keyword" and two "UnStored" fields.
There are about 800 documents in the index, the index files are about 7 MB alltogether.
I have ...
0
votes
0answers
94 views
how to add pagination for zend_search_lucene results in symfony?
I am using symfony 1.0 and it has 'pager' plugin which paginates the result.
The code used for it is as below:
$this->pager = new sfPropelPager('Jobapplication', NewsConfig :: ...
1
vote
0answers
55 views
How to search for all the content in the index using unindexed filed value like URLs using index of zend_search_lucene?
I am using zend_search_Lucene for indexing files and its contents.
below is the code I am using:
$index=$index = new ...
0
votes
0answers
44 views
Zend_Lucene not giving expected results
I have a Zend Serach Lucene set up like this:
.....
$doc = new Zend_Search_Lucene_Document();
// index and store fields
$doc->addField(Zend_Search_Lucene_Field::Text('name', $r['name']));
...
0
votes
2answers
302 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
1answer
57 views
when to call optimize function while using zend_search_lucene?
I am using zend_search_lucene for indexing documents and I am in dilemma on calling optimize function.
Please let me know if optimize function is to be called after indexing or while searching.
...
1
vote
0answers
37 views
when to call full optimize function in lucene search?
I am confused when to call the Full index optimization in Lucene search.
I am using zend_search_lucene for it.
// Open existing index
$index = Zend_Search_Lucene::open('/data/my-index');
// ...
-1
votes
2answers
198 views
How to build functionality to search like google using zend_search_lucene?
I am using zend_search_lucene to search for keyword in documents.
In one of the documents it has phrase This taught me a valuable lesson in time management as I still had to attend lectures and ...
0
votes
1answer
242 views
Using Zend Search Lucene with wildcard
I'm trying to wildcard a field using Zend search Lucene.
$index = Zend_Search_Lucene::open("/data/my_index1");
$doc = new Zend_Search_Lucene_Document();
...
1
vote
2answers
392 views
how to remove unreadable characters in a context using PHP?
Hi am feeding context to zend_lucene_search and it can search for the word up to special characters and after that it is not searchable.
for example:
very well to the other job boards � one of ...
2
votes
1answer
187 views
How to apply search query for special characters like @ in Zend_Search_Lucene?
In the Zend_Search_Lucene I am using below code for indexing and I have changed default analyzer to search for numeric values.
public function executeIndexIT() {
$path = '/home/project/mgh/lib/';
...
3
votes
1answer
271 views
No hits with from a Zend Search MultiTerm Query? (There should be 3)
I have a search form with a name, club, natranking, doublesranking and club field. I have selected a club from the selectbox, left the name field blank and clicked 'Search'. The result has no hits. ...
2
votes
2answers
651 views
Using Zend Search Lucene with Symfony 2
I have a searchform in my webapp where users can search others by name, clubname, ...
This is the code I'm using for the search but it's not giving me any 'hits'.
$search = ...
3
votes
1answer
351 views
How to improve Zend Lucene performance?
I am currently struggling to speed up my Zend Lucene index. It contains about 1M rows (documents). In some cases it takes up to 0.4 sec to search through it. It is not acceptable. I wish it could ...
1
vote
1answer
328 views
Zend Search Lucene - Searching specific field
I currently have Zend_Search_Lucene set up as the search engine on the project I am working on.
It is working great at the default level (ie. searching all fields), however I have the need to now ...
0
votes
1answer
234 views
Using Zend_Search_Lucene fopen fails .fnm files
I'm using Zend_Search_Lucene, in a standalone project not based on ZF. I index content successfully, and search them also, but the problem is that it cannot create the .fnm files
here is the code I ...
0
votes
1answer
278 views
Zend Lucene Search - Update index - Is it possible?
I am implementing Zend Lucene search in my website. Now I am doing my index updation by deleting the old index by its id and re creating it. But I would like to know whether it is possible to update ...
1
vote
2answers
276 views
Zend search lucene DOCX date range query causes error “Range query boundary terms must be non-multiple word terms”
I am using Zend Search Lucene to index a number of DOCX files.
$index = Zend_Search_Lucene::create($indexpath);
Zend_Search_Lucene_Analysis_Analyzer::setDefault(new ...
0
votes
1answer
161 views
Return results when search parameters is null i Zend Lucene
I have multiple fields in search form.Every field could be empty.
I build query like this:
$search_title = trim($_POST["search_title"]);
$search_skill = trim($_POST["search_skill"]);
$search_company ...
1
vote
0answers
234 views
Zend_Search_Lucene - weird behaviour for Wildcard search and “numeric” string
Weird issue I get every time I search "11.11" or "22.22" etc... No problem if I search for "aa.aa" but when I put only integers into my string, I get the following exception:
Wildcard search is ...
0
votes
1answer
217 views
Problems getting MySql data into an index using Zend_Search_Lucene
Trying to use Zend_Search_Lucene to search a MySql database and display the results. Running the following code and can't figure out why I'm not getting any info into my index. Quite new with PHP, ...
2
votes
1answer
104 views
What is better ? One big field or many small?
I'm about writing a search engine based on Zend Search Lucène.
My objects have many different fields (10 text type), and i would like to know which of these ways is the best. (All fields are ...
2
votes
1answer
288 views
Lucene: Loading Index files while searching?
Can anyone explain how index files are loaded in memory while searching?
Is the whole file (fnm, tis, fdt etc) loaded at once or in chunks?
How individual segments are loaded and in which order?
...
