Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
S
solarium
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
common
solarium
Commits
5ec5bf62
Commit
5ec5bf62
authored
Jun 06, 2012
by
Andy Lester
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change contraction "it's" to possessive "its", and make a few
punctuation tweaks.
parent
7b57f3e2
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
23 additions
and
23 deletions
+23
-23
examples/4.3-extending-usage.php
examples/4.3-extending-usage.php
+1
-1
examples/7.1-plugin-loadbalancer.php
examples/7.1-plugin-loadbalancer.php
+2
-2
library/Solarium/Configurable.php
library/Solarium/Configurable.php
+3
-3
library/Solarium/Plugin/CustomizeRequest.php
library/Solarium/Plugin/CustomizeRequest.php
+2
-2
library/Solarium/Plugin/Loadbalancer.php
library/Solarium/Plugin/Loadbalancer.php
+3
-3
library/Solarium/Query/Select.php
library/Solarium/Query/Select.php
+2
-2
library/Solarium/Query/Select/Component/Facet/MultiQuery.php
library/Solarium/Query/Select/Component/Facet/MultiQuery.php
+2
-2
library/Solarium/Query/Select/Component/FacetSet.php
library/Solarium/Query/Select/Component/FacetSet.php
+1
-1
library/Solarium/Query/Select/Component/Stats.php
library/Solarium/Query/Select/Component/Stats.php
+1
-1
library/Solarium/Query/Update.php
library/Solarium/Query/Update.php
+3
-3
library/Solarium/Result/Select/Facet/Field.php
library/Solarium/Result/Select/Facet/Field.php
+1
-1
library/Solarium/Result/Select/Facet/MultiQuery.php
library/Solarium/Result/Select/Facet/MultiQuery.php
+1
-1
library/Solarium/Result/Select/Facet/Range.php
library/Solarium/Result/Select/Facet/Range.php
+1
-1
No files found.
examples/4.3-extending-usage.php
View file @
5ec5bf62
...
...
@@ -24,7 +24,7 @@ class ProductQuery extends Solarium_Query_Select{
}
// This query inherits all of the query params of it
'
s parent (using parent::_init) and adds some more
// This query inherits all of the query params of its parent (using parent::_init) and adds some more
// Ofcourse it could also alter or remove settings
class
ProductPriceLimitedQuery
extends
ProductQuery
{
...
...
examples/7.1-plugin-loadbalancer.php
View file @
5ec5bf62
...
...
@@ -25,7 +25,7 @@ for($i=1; $i<=8; $i++) {
echo
'Server: '
.
$loadbalancer
->
getLastServerKey
()
.
'<hr/>'
;
}
//
force a server for a query (normally solr 3 is extremely unlikely based on it's weight)
//
Force a server for a query (normally solr 3 is extremely unlikely based on its weight).
$loadbalancer
->
setForcedServerForNextQuery
(
'solr3'
);
$resultset
=
$client
->
select
(
$query
);
echo
'Query execution with server forced to solr3<br/>'
;
...
...
library/Solarium/Configurable.php
View file @
5ec5bf62
...
...
@@ -79,8 +79,8 @@ class Solarium_Configurable
/**
* Set options
*
* If $options is an object
it will be converted into an array by called
* it
'
s toArray method. This is compatible with the Zend_Config classes in
* If $options is an object
, it will be converted into an array by calling
* its toArray method. This is compatible with the Zend_Config classes in
* Zend Framework, but can also easily be implemented in any other object.
*
* @throws Solarium_Exception
...
...
library/Solarium/Plugin/CustomizeRequest.php
View file @
5ec5bf62
...
...
@@ -183,7 +183,7 @@ class Solarium_Plugin_CustomizeRequest extends Solarium_Plugin_Abstract
/**
* Remove a single Customization
*
* You can remove a Customization by passing it
's key, or by passing the Customization instance
* You can remove a Customization by passing it
s key, or by passing the Customization instance.
*
* @param string|Solarium_Plugin_CustomizeRequest_Customization $customization
* @return Solarium_Plugin_CustomizeRequest Provides fluent interface
...
...
library/Solarium/Plugin/Loadbalancer.php
View file @
5ec5bf62
...
...
@@ -99,8 +99,8 @@ class Solarium_Plugin_Loadbalancer extends Solarium_Plugin_Abstract
/**
* Presets of the client adapter
*
* These settings are used to restore the adapter to it
'
s original status for queries
* that cannot be loadbalanced (for instance update queries that need to go to the master)
* These settings are used to restore the adapter to its original status for queries
* that cannot be loadbalanced (for instance
,
update queries that need to go to the master)
*
* @var array
*/
...
...
library/Solarium/Query/Select.php
View file @
5ec5bf62
...
...
@@ -697,7 +697,7 @@ class Solarium_Query_Select extends Solarium_Query
/**
* Remove a single filterquery
*
* You can remove a filterquery by passing it
'
s key, or by passing the filterquery instance
* You can remove a filterquery by passing its key, or by passing the filterquery instance
*
* @param string|Solarium_Query_Select_FilterQuery $filterQuery
* @return Solarium_Query_Select Provides fluent interface
...
...
@@ -828,7 +828,7 @@ class Solarium_Query_Select extends Solarium_Query
/**
* Remove a component instance
*
* You can remove a component by passing it
's key or the component instance
* You can remove a component by passing it
s key or the component instance.
*
* @param string|Solarium_Query_Select_Component $component
* @return Solarium_Query_Select Provides fluent interface
...
...
library/Solarium/Query/Select/Component/Facet/MultiQuery.php
View file @
5ec5bf62
...
...
@@ -192,7 +192,7 @@ class Solarium_Query_Select_Component_Facet_MultiQuery extends Solarium_Query_Se
/**
* Remove a single facetquery
*
* You can remove a facetquery by passing it
's key or the facetquery instance
* You can remove a facetquery by passing it
s key or the facetquery instance.
*
* @param string|Solarium_Query_Select_Component_Facet_Query $query
* @return Solarium_Query_Select_Component_Facet_MultiQuery Provides fluent interface
...
...
library/Solarium/Query/Select/Component/FacetSet.php
View file @
5ec5bf62
...
...
@@ -326,7 +326,7 @@ class Solarium_Query_Select_Component_FacetSet extends Solarium_Query_Select_Com
/**
* Remove a single facet
*
* You can remove a facet by passing it
'
s key or the facet instance
* You can remove a facet by passing its key or the facet instance
*
* @param string|Solarium_Query_Select_Component_Facet $facet
* @return Solarium_Query Provides fluent interface
...
...
library/Solarium/Query/Select/Component/Stats.php
View file @
5ec5bf62
...
...
@@ -200,7 +200,7 @@ class Solarium_Query_Select_Component_Stats extends Solarium_Query_Select_Compon
/**
* Remove a single field
*
* You can remove a field by passing it
'
s key, or by passing the field instance
* You can remove a field by passing its key, or by passing the field instance
*
* @param string|Solarium_Query_Select_Component_Stats_Field $field
* @return Solarium_Query_Select_Component_Stats Provides fluent interface
...
...
library/Solarium/Query/Update.php
View file @
5ec5bf62
...
...
@@ -199,7 +199,7 @@ class Solarium_Query_Update extends Solarium_Query
/**
* Remove a command
*
* You can remove a command by passing it
's key or by passing the command instance
* You can remove a command by passing it
s key or by passing the command instance.
*
* @param string|Solarium_Query_Update_Command $command
* @return Solarium_Query_Update Provides fluent interface
...
...
@@ -391,7 +391,7 @@ class Solarium_Query_Update extends Solarium_Query
* Set a custom document class for use in the createDocument method
*
* This class should extend Solarium_Document_ReadWrite or
* at least be compatible with it
's interface
* at least be compatible with it
s interface.
*
* @param string $value classname
* @return Solarium_Query
...
...
library/Solarium/Result/Select/Facet/Field.php
View file @
5ec5bf62
...
...
@@ -40,7 +40,7 @@
* Select field facet result
*
* A field facet will usually return a dataset of multiple rows, in each row a
* value and it
'
s count. You can access the values as an array using
* value and its count. You can access the values as an array using
* {@link getValues()} or iterate this object.
*
* @package Solarium
...
...
library/Solarium/Result/Select/Facet/MultiQuery.php
View file @
5ec5bf62
...
...
@@ -40,7 +40,7 @@
* Select multiquery facet result
*
* A multiquery facet will usually return a dataset of multiple rows, in each
* row a query key and it
'
s count. You can access the values as an array using
* row a query key and its count. You can access the values as an array using
* {@link getValues()} or iterate this object.
*
* @package Solarium
...
...
library/Solarium/Result/Select/Facet/Range.php
View file @
5ec5bf62
...
...
@@ -40,7 +40,7 @@
* Select range facet result
*
* A multiquery facet will usually return a dataset of multiple count, in each
* row a range as key and it
'
s count. You can access the values as an array using
* row a range as key and its count. You can access the values as an array using
* {@link getValues()} or iterate this object.
*
* The extra counts 'before', 'between' and 'after' are only available if the
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment