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 can install Zend_Search_Lucene with Zend Optimizer or do I need the whole Zend framework?
Does the Zend lucene search engine work with just Zend Optimizer?
256 Views Asked by iwek At
1
There are 1 best solutions below
Related Questions in ZEND-FRAMEWORK
- Fatal error: Uncaught exception 'Zend_Acl_Role_Registry_Exception' with message 'Role 'admin' not found
- Uninstalling php 5.3 in ubuntu 14.04
- zend soap server reading xml attributes
- Failed installation of zend-escaper with Composer
- Composer cannot find Git windows 8
- Can/How does one make Zend's default (or any other autoloader on the stack) ignore a class?
- Zend Framework Active Directory authentication
- Zend: 500 error instead of 404
- How to force Zend_Navigation_Page_Mvc to generate an href
- Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 3 bytes) in E:\library\Zend\Db\Adapter\Pdo\Abstract.php on line 144
- Zend Gdata - missing HeaderValue.php
- Cookies on Zend Framework 2
- Fatal error: Class 'Zend_Pdf_Color_RGB' not found app/code/core/Mage/Sales/Model/Order/Pdf/Shipment.php magento using zend library
- CORS - request made after preflight request expects 'Access-Control-Allow-Credentials' to be true
- Why is this form invalid all the time
Related Questions in LUCENE
- Do 'reduce' with results from Cloudant search?
- How can I integrate Solr5.1.0 with Nutch1.10
- Exact word not boosting much Solr
- Solr stopped with Error opening new searcher at org.apache.solr.core
- How to get parsed terms of a document - Lucene
- Lucene get all non deleted document from index file
- ElasticSearch synonym and word delimiter analyzer are not compatible
- solrException. XML parser doesn't support XInclude option
- Solr Negative Boost Query result containing Some Specific Words
- lucene 5.1.0 delete document from index with specific id
- how to add new Fields into solr schema
- How to find duplicates in lucene documents?
- Upgrading SOLR from 3.5 to 5.2
- Search for nodes in Neo4j with schema index
- How to wisely combine shingles and edgeNgram to provide flexible full text search?
Related Questions in ZEND-LUCENE
- Search by number in zend lucene
- Zend Lucene delete document
- php foreach repeating twice
- what is good alternative for Lucene search?
- Zend_Search_Lucene: UTF-8 madness
- Custom Search Engine on Zend Framework
- PHP Zend Lucene Search Query with multiple criteria fail
- Zend_Search_Lucence - Wildcard search is supported only for non-multiple word terms?
- Encoding problems with Zend Lucene
- Zend: index generation and the pros and cons of Zend_Search_Lucene
- Zend Search Lucene searching whole product description
- Conditions in Zend Lucene
- Lucene: how to search EAV or 1:m?
- Does the Zend lucene search engine work with just Zend Optimizer?
- Zend Lucene - how to build an index for Calendar application?
Related Questions in ZEND-OPTIMIZER
- Zend Guard Loader not getting enabled
- suhosin patch or extension and zend optimizer
- can't install Zend optimizer
- Incompatible file format error message with Zend Optimizer 3.3.9
- How do I install Zend Optimizer on an Amazon EC2 Linux AMI instance?
- Run php files without Installing Zend optimizer
- What's the difference between Zend Optimizer and Zend Guard Loader? And what do they actually do?
- Is Zend OPCache the same thing as Zend Optimizer+
- Any way to get Zend Guard Loader (php 5.3) to execute scripts protected with zendenc52.exe
- Does the Zend lucene search engine work with just Zend Optimizer?
- Can Zend Optimizer and IonCube co-reside on the same server?
- Zend Optimizer is it work a try?
- Opcache - Clean cache in PHP5.4 and lower
- phpprorobid issue: setting up live is messing a lot
- using xCache with Zend optimizer together
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Zend Optimizer and Zend Framework are completely unrelated products. Zend Optimizer is what allows PHP applications encoded with Zend Guard to run. It is similar to xCache or eAccellerator in that Zend Optimizer runs PHP source files that have been compiled to byte code. Optimizer has no knowledge or pre-built in code for Zend Framework.
If you want to use only Zend_Search_Lucene, you don't really need the whole Zend Framework, just the Zend_Search_Lucene classes and any of its dependencies.
I did a check and it looks like the only files you need are
Zend/Searchand all of its files and subdirectories, andZend/Exception.php. Zend_Search_Lucene doesn't depend on or use any other Zend Framework code.So to save yourself from having to have the whole ZF library, you can just download the minimal package, and take Zend/Search/* and Zend/Exception.php and put them in a location that is in your include_path. You should keep the directory structure so that you have the folder called
Zendwhich contains Exception.php and the directory Search. The folder that has the Zend directory should be in your include_path and you can use Zend Lucene without the rest of the library.Hope that helps.