Skip to content

Commit

Permalink
s/ElasticSearch/Elasticsearch/
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Apr 18, 2017
1 parent b0e5246 commit 4eaf44f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Changes
Expand Up @@ -146,7 +146,7 @@ Revision history for MetaCPAN-Client (previously MetaCPAN-API)

1.010000 23.01.15
* support wildcard-only value in complex search (mickeyn)
* support raw ElasticSearch filters in 'all' queries (mickeyn)
* support raw Elasticsearch filters in 'all' queries (mickeyn)

1.009000 11.01.15
* GH #25 (RT #99499): added support for 'fields' filtering (mickeyn, oalders)
Expand Down Expand Up @@ -226,7 +226,7 @@ Revision history for MetaCPAN-Client (previously MetaCPAN-API)
* Simple queries return entity objects
* Complex queries return resultset objects (with iterator)
* Support for scrolled searches
* Inline support for ElasticSearch facets
* Inline support for Elasticsearch facets
* Documentation, tests - all cleaned, rewritten

0.43 05.04.12
Expand Down
12 changes: 6 additions & 6 deletions lib/MetaCPAN/Client.pm
Expand Up @@ -498,7 +498,7 @@ Returns a L<MetaCPAN::Client::Mirror> object.
=head2 reverse_dependencies
my $deps = $mcpan->reverse_dependencies('ElasticSearch');
my $deps = $mcpan->reverse_dependencies('Search::Elasticsearch');
all L<MetaCPAN::Client::Release> objects of releases that are dependent
on a given module, returned as L<MetaCPAN::Client::ResultSet>.
Expand Down Expand Up @@ -564,7 +564,7 @@ See SEARCH PARAMS.
=head3 es_filter
Pass a raw ElasticSearch filter structure to reduce the number
Pass a raw Elasticsearch filter structure to reduce the number
of elements returned by the query.
my $some_releases = $mcpan->all('releases', { es_filter => {...} })
Expand All @@ -591,13 +591,13 @@ can be passed as a csv list or an array ref.
=head2 _source
Note: this param and its description are a bit too ElasticSearch specific.
Note: this param and its description are a bit too Elasticsearch specific.
just like 'es_filter' - use only if you know what you're dealing with.
Some fields are not indexed in ElasticSearch but stored as part of
Some fields are not indexed in Elasticsearch but stored as part of
the entire document.
These fields can still be read, but without the internal ElasticSearch
These fields can still be read, but without the internal Elasticsearch
optimizations and the server will interally read the whole document.
Why do we even need those? because we don't index everything and some things
Expand All @@ -621,7 +621,7 @@ reach out to us for assistance).
Note: please use with caution.
This parameter will set the buffer size to be pulled from ElasticSearch
This parameter will set the buffer size to be pulled from Elasticsearch
when scrolling (default = 1000).
This will affect query performance and memory usage, but you will still
get an iterator back to fetch one object at a time.
Expand Down
2 changes: 1 addition & 1 deletion lib/MetaCPAN/Client/Request.pm
Expand Up @@ -377,5 +377,5 @@ Fetches a path from MetaCPAN (post or get), and returns the decoded result.
=head2 ssearch
Calls an ElasticSearch query and returns an L<MetaCPAN::Client::Scroll>
Calls an Elasticsearch query and returns an L<MetaCPAN::Client::Scroll>
scroller object.
2 changes: 1 addition & 1 deletion lib/MetaCPAN/Client/Scroll.pm
Expand Up @@ -205,7 +205,7 @@ The total number of matches.
=head2 type
The ElasticSearch type to query.
The Elasticsearch type to query.
=head2 ua
Expand Down

0 comments on commit 4eaf44f

Please sign in to comment.