Skip to content

Commit 9c0c46f

Browse files
Update links: //lucene.apache.org/solr/ → //solr.apache.org/ (solariumphp#952)
1 parent beec496 commit 9c0c46f

File tree

95 files changed

+182
-182
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+182
-182
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ If you are uncertain about any part or need help please feel free to ask for hel
2323
* Solarium follows the Symfony2 code standards: http://symfony.com/doc/current/contributing/code/standards.html
2424
* Each PR will be checked for code standards violations. Of course anything other than a 'green' status needs to be fixed before a PR can be merged.
2525
* Each PR will be checked by the CI environment automatically. Of course anything other than a 'green' status needs to be fixed before a PR can be merged.
26-
* If you link to the Solr reference guide in a comment or the docs, use a 'versionless' URL (e.g. <https://lucene.apache.org/solr/guide/getting-started.html>). This will always redirect to the latest release.
26+
* If you link to the Solr reference guide in a comment or the docs, use a 'versionless' URL (e.g. <https://solr.apache.org/guide/getting-started.html>). This will always redirect to the latest release.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Solarium 6:
7474
$categoriesTerms = new Solarium\Component\Facet\JsonTerms(['local_key' => 'categories', 'field' => 'cat', 'limit'=>4,'numBuckets'=>true]);
7575
```
7676

77-
See https://lucene.apache.org/solr/guide/local-parameters-in-queries.html for an introduction about local parameters.
77+
See https://solr.apache.org/guide/local-parameters-in-queries.html for an introduction about local parameters.
7878

7979

8080
### Pitfall when upgrading from 3.x or 4.x

docs/documents.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ foreach ($resultset as $document) {
183183
htmlFooter();
184184
```
185185

186-
Your schema has to meet certain criteria for this to work. For more info on Solr atomic updates please read the manual: <https://lucene.apache.org/solr/guide/updating-parts-of-documents.html#atomic-updates>
186+
Your schema has to meet certain criteria for this to work. For more info on Solr atomic updates please read the manual: <https://solr.apache.org/guide/updating-parts-of-documents.html#atomic-updates>.
187187

188188
Versioning
189189
----------

docs/queries/extract-query.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
An extract query can be used to index files in Solr. For more info see <https://lucene.apache.org/solr/guide/uploading-data-with-solr-cell-using-apache-tika.html>
1+
An extract query can be used to index files in Solr. For more info see <https://solr.apache.org/guide/uploading-data-with-solr-cell-using-apache-tika.html>.
22

33
Building an extract query
44
-------------------------

docs/queries/morelikethis-query.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
A MoreLikeThis (MLT) query is designed to generate information about "similar" documents using the MoreLikeThis functionality provided by Lucene. It supports faceting, paging, and filtering using CommonQueryParameters.
22

3-
This query uses the [Solr MoreLikeThis Handler](https://lucene.apache.org/solr/guide/morelikethis.html) that specifically returns MLT results. Alternatively you can use the [MLT component](select-query/building-a-select-query/components/morelikethis-component.md) for the select query.
3+
This query uses the [Solr MoreLikeThis Handler](https://solr.apache.org/guide/morelikethis.html) that specifically returns MLT results. Alternatively you can use the [MLT component](select-query/building-a-select-query/components/morelikethis-component.md) for the select query.
44

55
Building a MLT query
66
--------------------

docs/queries/ping-query.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ A ping query can be used to check the connection to the Solr server and the heal
22

33
*It's not advisable to check Solr with a ping before every request, this can have a big performance impact. You are better of using the ping query with intervals, or as a check after a query error to see if the query was faulty or if Solr has problems.*
44

5-
The search executed by a ping is configured with the Request Parameters API. For more info see <https://lucene.apache.org/solr/guide/ping.html>
5+
The search executed by a ping is configured with the Request Parameters API. For more info see <https://solr.apache.org/guide/ping.html>.
66

77
Creating a ping query
88
---------------------

docs/queries/query-helper/query-helper.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ See the API docs (linked at the bottom of this page) for more details.
2020
Dereferenced params
2121
-------------------
2222

23-
The query helper also supports dereferenced params. See the implementation of the join() and qparser() methods. For more info also see <https://lucene.apache.org/solr/guide/local-parameters-in-queries.html#parameter-dereferencing>:
23+
The query helper also supports dereferenced params. See the implementation of the `join()` and `qparser()` methods. For more info also see <https://solr.apache.org/guide/local-parameters-in-queries.html#parameter-dereferencing>:
2424

2525
> Parameter dereferencing, or indirection, lets you use the value of another argument rather than specifying it directly. This can be used to simplify queries, decouple user input from query parameters, or decouple front-end GUI parameters from defaults set in `solrconfig.xml`.
2626

docs/queries/realtimeget-query.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
A RealtimeGet query is useful when using Solr as a NoSQL store. For more info see <https://lucene.apache.org/solr/guide/realtime-get.html>
1+
A RealtimeGet query is useful when using Solr as a NoSQL store. For more info see <https://solr.apache.org/guide/realtime-get.html>.
22

33
Building a realtime query
44
-------------------------

docs/queries/select-query/building-a-select-query/components/analytics-component.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
For a description of the Solr AnalyticsComponent see the [Solr Ref Guide](https://lucene.apache.org/solr/guide/analytics.html).
1+
For a description of the Solr Analytics Component see the [Solr Ref Guide](https://solr.apache.org/guide/analytics.html).
22

33
Options
44
-------

docs/queries/select-query/building-a-select-query/components/debug-component.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
For a description of Solr debugging see <https://lucene.apache.org/solr/guide/common-query-parameters.html#debug-parameter>.
1+
For a description of Solr debugging see <https://solr.apache.org/guide/common-query-parameters.html#debug-parameter>.
22

33
Options
44
-------

docs/queries/select-query/building-a-select-query/components/distributed-search-component.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
For a description of Solr distributed search (also referred to as 'shards' or 'sharding') see <https://lucene.apache.org/solr/guide/distributed-search-with-index-sharding.html>.
1+
For a description of Solr distributed search (also referred to as 'shards' or 'sharding') see <https://solr.apache.org/guide/distributed-search-with-index-sharding.html>.
22

33
Options
44
-------
@@ -27,7 +27,7 @@ $client = new Solarium\Client($adapter, $eventDispatcher, $config);
2727
$query = $client->createSelect();
2828

2929
// add distributed search settings
30-
// see https://lucene.apache.org/solr/guide/distributed-search-with-index-sharding.html#testing-index-sharding-on-two-local-servers for setting up two Solr instances
30+
// see https://solr.apache.org/guide/distributed-search-with-index-sharding.html#testing-index-sharding-on-two-local-servers for setting up two Solr instances
3131
$distributedSearch = $query->getDistributedSearch();
3232
$distributedSearch->addShard('shard1', 'localhost:8983/solr');
3333
$distributedSearch->addShard('shard2', 'localhost:7574/solr');

docs/queries/select-query/building-a-select-query/components/facetset-component/facet-field.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Only the facet-type specific options are listed. See [Facetset component](V3:Fac
1818
| offset | int | null | Show facet count starting from this offset. |
1919
| mincount | int | null | Minimal term count to be included in facet count results. |
2020
| missing | boolean | null | Also make a count of all document that have no value for the facet field. |
21-
| method | string | null | Use one of the class constants as value. See <https://lucene.apache.org/solr/guide/faceting.html#field-value-faceting-parameters> for details. |
21+
| method | string | null | Use one of the class constants as value. See <https://solr.apache.org/guide/faceting.html#field-value-faceting-parameters> for details. |
2222
||
2323

2424
Example

docs/queries/select-query/building-a-select-query/components/facetset-component/facet-pivot.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The facet class supports the Solr pivot facet: <https://lucene.apache.org/solr/guide/faceting.html#pivot-decision-tree-faceting>.
1+
The facet class supports the Solr pivot facet: <https://solr.apache.org/guide/faceting.html#pivot-decision-tree-faceting>.
22

33
Options
44
-------

docs/queries/select-query/building-a-select-query/components/facetset-component/facet-range.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The facet class supports the Solr range facet: <https://lucene.apache.org/solr/guide/faceting.html#range-faceting>.
1+
The facet class supports the Solr range facet: <https://solr.apache.org/guide/faceting.html#range-faceting>.
22

33
Options
44
-------

docs/queries/select-query/building-a-select-query/components/grouping-component.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
For a description of Solr grouping (also referred to as 'result grouping' or 'field collapse') see <https://lucene.apache.org/solr/guide/result-grouping.html>.
1+
For a description of Solr grouping (also referred to as 'result grouping' or 'field collapse') see <https://solr.apache.org/guide/result-grouping.html>.
22

33
It's important to have a good understanding of the available options, as they can have have big effects on the result format.
44

docs/queries/select-query/building-a-select-query/components/highlighting-component.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The highlighting component can be used to highlight matches in content. For more info see <https://lucene.apache.org/solr/guide/highlighting.html>.
1+
The highlighting component can be used to highlight matches in content. For more info see <https://solr.apache.org/guide/highlighting.html>.
22

33
Options
44
-------

docs/queries/select-query/building-a-select-query/components/morelikethis-component.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The MoreLikeThis component can be used if you want to retrieve similar documents for your query results. This component uses MoreLikeThis in the StandardRequestHandler, not the standalone MoreLikeThisHandler. For more info see <https://lucene.apache.org/solr/guide/morelikethis.html>.
1+
The MoreLikeThis component can be used if you want to retrieve similar documents for your query results. This component uses MoreLikeThis in the StandardRequestHandler, not the standalone MoreLikeThisHandler. For more info see <https://solr.apache.org/guide/morelikethis.html>.
22

33
Options
44
-------

docs/queries/select-query/building-a-select-query/components/query-elevation-component.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Query Elevation is a Solr component that lets you configure the top results for a given query regardless of the normal Lucene scoring. Elevated query results can be configured in an external XML file or at request time. For more info see <https://lucene.apache.org/solr/guide/the-query-elevation-component.html>.
1+
Query Elevation is a Solr component that lets you configure the top results for a given query regardless of the normal Lucene scoring. Elevated query results can be configured in an external XML file or at request time. For more info see <https://solr.apache.org/guide/the-query-elevation-component.html>.
22

33
Options
44
-------

docs/queries/select-query/building-a-select-query/components/query-rerankquery-component.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Query Re-Ranking allows you to run a simple query (A) for matching documents and
22

33
Since the more costly ranking from query B is only applied to the top N documents, it will have less impact on performance then just using the complex query B by itself. The trade off is that documents which score very low using the simple query A may not be considered during the re-ranking phase, even if they would score very highly using query B.
44

5-
For more info see <https://lucene.apache.org/solr/guide/query-re-ranking.html>.
5+
For more info see <https://solr.apache.org/guide/query-re-ranking.html>.
66

77
Options
88
-------

docs/queries/select-query/building-a-select-query/components/spellcheck-component.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
For a description of Solr spellcheck (also referred to as 'query suggest') see <https://lucene.apache.org/solr/guide/spell-checking.html>.
1+
For a description of Solr spellcheck (also referred to as 'query suggest') see <https://solr.apache.org/guide/spell-checking.html>.
22

33
The `setQuery()` method of this component supports [placeholders](V3:Placeholders "wikilink").
44

@@ -25,7 +25,7 @@ Options
2525
Collate params
2626
--------------
2727

28-
Using the API method setCollateParam($param, $value) you can set any collate params you need. For more info see <https://lucene.apache.org/solr/guide/spell-checking.html#spell-check-parameters>.
28+
Using the API method setCollateParam($param, $value) you can set any collate params you need. For more info see <https://solr.apache.org/guide/spell-checking.html#spell-check-parameters>.
2929

3030
Example
3131
-------

docs/queries/select-query/building-a-select-query/components/stats-component.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
For a description of the Solr StatsComponent see <https://lucene.apache.org/solr/guide/the-stats-component.html>.
1+
For a description of the Solr StatsComponent see <https://solr.apache.org/guide/the-stats-component.html>.
22

33
Options
44
-------
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
With select queries you can select documents and/or facet counts from your Solr index. Solr select queries have lots of options. See the following pages in the Solr reference guide for an intro:
22

3-
- [Common Query Parameters](https://lucene.apache.org/solr/guide/common-query-parameters.html)
4-
- [The Standard Query Parser](https://lucene.apache.org/solr/guide/the-standard-query-parser.html)
5-
- [Faceting](https://lucene.apache.org/solr/guide/faceting.html)
3+
- [Common Query Parameters](https://solr.apache.org/guide/common-query-parameters.html)
4+
- [The Standard Query Parser](https://solr.apache.org/guide/the-standard-query-parser.html)
5+
- [Faceting](https://solr.apache.org/guide/faceting.html)

docs/queries/server-query/core-admin-query.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CoreAdmin queries can be used to [administrate cores on your Solr server](https://lucene.apache.org/solr/guide/coreadmin-api.html).
1+
CoreAdmin queries can be used to [administrate cores on your Solr server](https://solr.apache.org/guide/coreadmin-api.html).
22

33
The CoreAdmin API on the Apache Solr server has several "actions" available and every action can have a set of arguments.
44

@@ -133,7 +133,7 @@ Split
133133

134134
Use to split a core.
135135

136-
See also: https://lucene.apache.org/solr/guide/coreadmin-api.html#coreadmin-split
136+
See also: <https://solr.apache.org/guide/coreadmin-api.html#coreadmin-split>.
137137

138138
**Available action methods**:
139139

docs/queries/suggester-query.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
A suggester query is a fast way to create an autocomplete feature. For more info on the Solr suggester component see: <https://lucene.apache.org/solr/guide/suggester.html>.
1+
A suggester query is a fast way to create an autocomplete feature. For more info on the Solr SuggestComponent see: <https://solr.apache.org/guide/suggester.html>.
22

33
Building a suggester query
44
--------------------------
@@ -10,7 +10,7 @@ See the example code below.
1010
| Name | Type | Default value | Description |
1111
|-----------------|------------------|---------------|----------------------------------------------------------------------------------------|
1212
| query | string | null | Query to spellcheck |
13-
| dictionary | string or array | null | The name(s) of the dictionary or dictionaries to use |
13+
| dictionary | string or array | null | The name(s) of the dictionary or dictionaries to use |
1414
| onlymorepopular | boolean | null | Only return suggestions that result in more hits for the query than the existing query |
1515
| collate | boolean | null | |
1616
||

docs/queries/terms-query.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
A terms query provides access to the indexed terms in a field. For details see: <https://lucene.apache.org/solr/guide/the-terms-component.html>.
1+
A terms query provides access to the indexed terms in a field. For details see: <https://solr.apache.org/guide/the-terms-component.html>.
22

33
Building a terms query
44
----------------------

docs/queries/update-query/building-an-update-query/building-an-update-query.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
An update query has options and commands. These commands and options are instructions for the client classes to build and execute a request and return the correct result. In the following sections both the options and commands will be discussed in detail. You can also take a look at <https://lucene.apache.org/solr/guide/uploading-data-with-index-handlers.html#xml-formatted-index-updates> for more information about the underlying Solr update handler XML request format.
1+
An update query has options and commands. These commands and options are instructions for the client classes to build and execute a request and return the correct result. In the following sections both the options and commands will be discussed in detail. You can also take a look at <https://solr.apache.org/guide/uploading-data-with-index-handlers.html#xml-formatted-index-updates> for more information about the underlying Solr update handler XML request format.
22

33
Options
44
-------

docs/queries/update-query/building-an-update-query/optimize-command.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
You can use this command to optimize your Solr index. Optimizing 'defragments' your index. The space taken by deleted document data is reclaimed and can merge the index into fewer segments. This can improve search performance a lot.
22

3-
See <https://lucene.apache.org/solr/guide/uploading-data-with-index-handlers.html#commit-and-optimize-during-updates> for more info about optimizing.
3+
See <https://solr.apache.org/guide/uploading-data-with-index-handlers.html#commit-and-optimize-during-updates> for more info about optimizing.
44

55
While 'optimizing' sounds like it's always a good thing to do, you should use it with care, as it can have a negative performance impact *during the optimize process*. If possible use try to use it outside peak hours.
66

examples/2.1.5.1.9-facet-json-range.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
// create a json range instance and set options
1919
// Set the 'other' parameter to retrieve counts for before, after, between, or all three.
2020
// Possible values are : JsonRange::OTHER_BEFORE, JsonRange::OTHER_AFTER, JsonRange::OTHER_BETWEEN, JsonRange::OTHER_ALL
21-
// See https://lucene.apache.org/solr/guide/json-facet-api.html#range-facet-parameters
21+
// See https://solr.apache.org/guide/json-facet-api.html#range-facet-parameters
2222
$priceranges = new JsonRange(['local_key' => 'priceranges', 'field' => 'price', 'start'=>1 ,'end'=>300,'gap'=>100, 'other'=>JsonRange::OTHER_ALL]);
2323

2424
// add json range instance to the facetSet

examples/2.1.5.8-distributed-search.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
$query = $client->createSelect();
1313

1414
// add distributed search settings
15-
// see https://lucene.apache.org/solr/guide/distributed-search-with-index-sharding.html#testing-index-sharding-on-two-local-servers for setting up two Solr instances
15+
// see https://solr.apache.org/guide/distributed-search-with-index-sharding.html#testing-index-sharding-on-two-local-servers for setting up two Solr instances
1616
$distributedSearch = $query->getDistributedSearch();
1717
$distributedSearch->addShard('shard1', 'localhost:8983/solr');
1818
$distributedSearch->addShard('shard2', 'localhost:7574/solr');

0 commit comments

Comments
 (0)