solrpecl.php.netThe Apache Solr PHP extension is an extremely fast, light-weight, feature-rich library that allows PHP applications to communicate easily and efficiently with Apache Solr server instances using an object-oriented API.It effectively simplifies the process of interacting with Apache Solr using PHP5 and it already comes with built-in readiness for the latest features added in Solr 3.1. The extension has features such as built-in, serializable query string builder objects which effectively simplifies the manipulation of name-value pair request parameters across repeated requests. The response from the Solr server is also automatically parsed into native php objects whose properties can be accessed as array keys or object properties without any additional configuration on the client-side. Its advanced HTTP client reuses the same connection across multiple requests and provides built-in support for connecting to Solr servers secured behind HTTP Authentication or HTTP proxy servers. It is also able to connect to SSL-enabled containers. Please consult the documentation for more details on features. Included in the source code are phpdoc stubs that enable autocomplete of Solr classes and methods in IDE during development in userland.Israel Ekpoiekpoiekpo@php.netyes2011-11-291.0.21.0.2stablestablePHP License
- Several Bug Fixes by Pierrick, Felipe and Tony
- Changes to make the code compile on 5.2.3 and greater
- Changes to Tests by Pierrick
5.2.31.4.0libxmlcurlsolrIsrael Ekpoiekpoiekpo@php.netyes1.0.21.0.2stablestable2011-11-29PHP License
- Several Bug Fixes by Pierrick, Felipe and Tony
- Changes to make the code compile on 5.2.3 and greater
- Changes to Tests by Pierrick
Israel Ekpoiekpoiekpo@php.netyes1.0.11.0.1stablestable2011-06-04PHP License
- Added support for json response writer in SolrClient
- Removed final bit from classes so that they can be mocked in unit tests
- Changed from beta to stable
- Included phpdoc stubs in source to enable autocomplete of Solr classes and methods in IDE during development
- Lowered libxml2 version requirement to 2.6.16
Israel Ekpoiekpoiekpo@php.netyes0.9.110.9.11betabeta2010-06-22PHP License
- Added ability to specify response writer in constructor option
- Added new method to set response writer SolrClient::setResponseWriter()
- Currently, the only supported response writers are 'xml' and 'phpnative'
- Added support for new native Solr response writer
- New response writer is available at https://issues.apache.org/jira/browse/SOLR-1967
Israel Ekpoiekpoiekpo@php.netyes0.9.100.9.10betabeta2010-05-04PHP License
- Increased compatibility with older systems running CentOS 4 or 5 and RHEL4 or 5
- Added ability to compile directly without having to build libcurl and libxml2 from source on older systems
- Lowered minimum supported version for libcurl to 7.15.0 (Alex Samorukov)
- Lowered minimum supported version for libxml2 to 2.6.26 (Alex Samorukov)
- Fixed PECL Bug# 17172 MoreLikeThis only parses one doc (trevor at blubolt dot com, max at blubolt dot com)
- Declared workaround macros for SSL private key constants due to support for earlier versions of libcurl (Alex Samorukov)
- Changed extension version numbers to start using hexadecimal numbers (Israel Ekpo)
- Added instructions on how to attempt to compile on windows (Israel Ekpo)
- Fixed PECL Bug# 17292 sending UTF-8 encoding in header (giguet at info dot unicaen dot fr)
Israel Ekpoiekpoiekpo@php.netyes0.9.90.9.9betabeta2010-01-10PHP License
- Fixed Bug #17009 Creating two SolrQuery objects leads to wrong query value
- Reset the buffer for the request data from the previous request in SolrClient
- Added new internal static function solr_set_initial_curl_handle_options()
- Moved the intialization of CURL handle options to solr_set_initial_curl_handle_options() function
- Resetting the CURL options on the (CURL *) handle after each request is completed
- Added more explicit error message to indicate that cloning SolrParams objects and its descendants is currently not yet supported
Israel Ekpoiekpoiekpo@php.netyes0.9.80.9.8betabeta2009-12-04PHP License
- Fixed config.w32 for Windows build support (Pierre, Pierrick)
- Fixed Bug #16943 Segmentation Fault from solr_encode_string() during attempt to retrieve solrXmlNode->children->content when solrXmlNode->children is NULL (Israel)
- Disabled Expect header in libcurl (Israel)
- Disabled Memory Debugging when normal debug is enabled (Israel)
- Added list of contributors to the project
Israel Ekpoiekpoiekpo@php.netyes0.9.70.9.7betabeta2009-11-17PHP License
- Fixed bug 16924 AC_MSG_NOTICE() is undefined in autoconf 2.13
- Added new method SolrClient::getDebug()
- Modified SolrClient::__construct() so that port numbers and other integer values for the options can be passed as strings.
- Changed internal string handling mechanism to allow for tracking of memory allocation in debug mode.
- Lowered minimum php version to 5.2.3. Unfortunately, this is the lowest PHP version that will be supported. PHP versions lower than 5.2.3 are not compatible or are causing tests to FAIL.
- Added php stubs for code-completion assists in IDEs and editors.
- Added more examples
Israel Ekpoiekpoiekpo@php.netyes0.9.60.9.6betabeta2009-11-01PHP License
Reduced minimum php version to 5.2.4
Israel Ekpoiekpoiekpo@php.netyes0.9.50.9.5betabeta2009-10-27PHP License
Added support for secure connections to SSL-enabled Solr servers (SSL/HTTPS).
Made connection errors more verbose.
The following options where added to the SolrClient constructor :
- secure (Boolean value indicating whether or not to connect in secure mode)
- timeout (This is maximum time in seconds allowed for the http data transfer operation. Default is 30 seconds)
- ssl_cert (File name to a PEM-formatted file containing the private key + private certificate (concatenated in that order) )
- ssl_key (File name to a PEM-formatted private key file only)
- ssl_keypassword (Password for private key)
- ssl_cainfo (Name of file holding one or more CA certificates to verify peer with)
- ssl_capath (Name of directory holding multiple CA certificates to verify peer with )
Israel Ekpoiekpoiekpo@php.netyes0.9.40.9.4betabeta2009-10-23PHP License
Fixed bug 16897 - ap_php_vasprintf not available in 5.2.11
Israel Ekpoiekpoiekpo@php.netyes0.9.30.9.3betabeta2009-10-19PHP License
- Corrected configuration options for automated installation via PECL. Removed extra hyphens.
Israel Ekpoiekpoiekpo@php.netyes0.9.20.9.2betabeta2009-10-19PHP License
- Fixed bug #16874 Added explanation in documentation
- Updated SolrParams::__toString() - modified to return name-value pair list instead of serialized object string
- Added the following methods to SolrParams :
SolrParams::toString()
SolrParams::getParam()
- Created the following aliases in SolrParams :
SolrParams::set()
SolrParams::add()
SolrParams::get()
- Added the following methods to SolrQuery :
SolrQuery::getQuery()
SolrQuery::getStart()
SolrQuery::getRows()
SolrQuery::getFields()
SolrQuery::getSortFields()
SolrQuery::getFilterQueries()
SolrQuery::getTimeAllowed()
SolrQuery::getFacet()
SolrQuery::getFacetFields()
SolrQuery::getFacetQueries()
SolrQuery::getFacetPrefix()
SolrQuery::getFacetSort()
SolrQuery::getFacetLimit()
SolrQuery::getFacetOffset()
SolrQuery::getFacetMinCount()
SolrQuery::getFacetMissing()
SolrQuery::getFacetMethod()
SolrQuery::getFacetDateFields()
SolrQuery::getFacetDateStart()
SolrQuery::getFacetDateEnd()
SolrQuery::getFacetDateGap()
SolrQuery::getFacetDateHardEnd()
SolrQuery::getFacetDateOther()
SolrQuery::getHighlight()
SolrQuery::getHighlightFields()
SolrQuery::getHighlightSnippets()
SolrQuery::getHighlightFragsize()
SolrQuery::getHighlightMergeContiguous()
SolrQuery::getHighlightRequireFieldMatch()
SolrQuery::getHighlightMaxAnalyzedChars()
SolrQuery::getHighlightAlternateField()
SolrQuery::getHighlightMaxAlternateFieldLength()
SolrQuery::getHighlightFormatter()
SolrQuery::getHighlightSimplePre()
SolrQuery::getHighlightSimplePost()
SolrQuery::getHighlightFragmenter()
SolrQuery::getHighlightUsePhraseHighlighter()
SolrQuery::getHighlightHighlightMultiTerm()
SolrQuery::getHighlightRegexSlop()
SolrQuery::getHighlightRegexPattern()
SolrQuery::getHighlightRegexMaxAnalyzedChars()
SolrQuery::getStats()
SolrQuery::getStatsFields()
SolrQuery::getStatsFacets()
SolrQuery::getMlt()
SolrQuery::getMltCount()
SolrQuery::getMltFields()
SolrQuery::getMltQueryFields()
SolrQuery::getMltMinTermFrequency()
SolrQuery::getMltMinDocFrequency()
SolrQuery::getMltMinWordLength()
SolrQuery::getMltMaxWordLength()
SolrQuery::getMltMaxNumTokens()
SolrQuery::getMltMaxNumQueryTerms()
SolrQuery::getMltBoost()
SolrQuery::getTerms()
SolrQuery::getTermsField()
SolrQuery::getTermsLowerBound()
SolrQuery::getTermsUpperBound()
SolrQuery::getTermsIncludeLowerBound()
SolrQuery::getTermsIncludeUpperBound()
SolrQuery::getTermsMinCount()
SolrQuery::getTermsMaxCount()
SolrQuery::getTermsPrefix()
SolrQuery::getTermsLimit()
SolrQuery::getTermsReturnRaw()
SolrQuery::getTermsSort()
Israel Ekpoiekpoiekpo@php.netyes0.9.10.9.1betabeta2009-10-07PHP License
- Fixed bug #16864 (Build failure in Non-ZTS builds)
Israel Ekpoiekpoiekpo@php.netyes0.9.00.9.0betabeta2009-10-05PHP License
- Initial release after approximately 10 months of development and 3 weeks of testing. This is the beta version. Some of the features may be modified in future releases.