在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):elasticquent/Elasticquent开源软件地址(OpenSource Url):https://github.com/elasticquent/Elasticquent开源编程语言(OpenSource Language):PHP 100.0%开源软件介绍(OpenSource Introduction):ElasticquentElasticsearch for Eloquent Laravel Models Elasticquent makes working with Elasticsearch and Eloquent models easier by mapping them to Elasticsearch types. You can use the default settings or define how Elasticsearch should index and search your Eloquent models right in the model. Elasticquent uses the official Elasticsearch PHP API. To get started, you should have a basic knowledge of how Elasticsearch works (indexes, types, mappings, etc). Elasticsearch RequirementsYou must be running at least Elasticsearch 1.0. Elasticsearch 0.9 and below will not work and are not supported. ContentsReporting IssuesIf you do find an issue, please feel free to report it with GitHub's bug tracker for this project. Alternatively, fork the project and make a pull request :) OverviewElasticquent allows you take an Eloquent model and easily index and search its contents in Elasticsearch. $books = Book::where('id', '<', 200)->get();
$books->addToIndex(); When you search, instead of getting a plain array of search results, you instead get an Eloquent collection with some special Elasticsearch functionality. $books = Book::search('Moby Dick');
echo $books->totalHits(); Plus, you can still use all the Eloquent collection functionality: $books = $books->filter(function ($book) {
return $book->hasISBN();
}); Check out the rest of the documentation for how to get started using Elasticsearch and Elasticquent! How Elasticquent WorksWhen using a database, Eloquent models are populated from data read from a database table. With Elasticquent, models are populated by data indexed in Elasticsearch. The whole idea behind using Elasticsearch for search is that its fast and light, so you model functionality will be dictated by what data has been indexed for your document. SetupBefore you start using Elasticquent, make sure you've installed Elasticsearch. To get started, add Elasticquent to you composer.json file:
Once you've run a 'providers' => [
...
Elasticquent\ElasticquentServiceProvider::class,
], We also provide a facade for elasticsearch-php client (which has connected using our settings), add following to your 'aliases' => [
...
'Es' => Elasticquent\ElasticquentElasticsearchFacade::class,
], Then add the Elasticquent trait to any Eloquent model that you want to be able to index in Elasticsearch: use Elasticquent\ElasticquentTrait;
class Book extends Eloquent
{
use ElasticquentTrait;
} Now your Eloquent model has some extra methods that make it easier to index your model's data using Elasticsearch. Elasticsearch ConfigurationBy default, Elasticquent will connect to $ php artisan vendor:publish --provider="Elasticquent\ElasticquentServiceProvider" <?php
return array(
/*
|--------------------------------------------------------------------------
| Custom Elasticsearch Client Configuration
|--------------------------------------------------------------------------
|
| This array will be passed to the Elasticsearch client.
| See configuration options here:
|
| http://www.elasticsearch.org/guide/en/elasticsearch/client/php-api/current/_configuration.html
*/
'config' => [
'hosts' => ['localhost:9200'],
'retries' => 1,
],
/*
|--------------------------------------------------------------------------
| Default Index Name
|--------------------------------------------------------------------------
|
| This is the index name that Elastiquent will use for all
| Elastiquent models.
*/
'default_index' => 'my_custom_index_name',
); Indexes and MappingWhile you can definitely build your indexes and mapping through the Elasticsearch API, you can also use some helper methods to build indexes and types right from your models. If you want a simple way to create indexes, Elasticquent models have a function for that:
For custom analyzer, you can set an /**
* The elasticsearch settings.
*
* @var array
*/
protected $indexSettings = [
'analysis' => [
'char_filter' => [
'replace' => [
'type' => 'mapping',
'mappings' => [
'&=> and '
],
],
],
'filter' => [
'word_delimiter' => [
'type' => 'word_delimiter',
'split_on_numerics' => false,
'split_on_case_change' => true,
'generate_word_parts' => true,
'generate_number_parts' => true,
'catenate_all' => true,
'preserve_original' => true,
'catenate_numbers' => true,
]
],
'analyzer' => [
'default' => [
'type' => 'custom',
'char_filter' => [
'html_strip',
'replace',
],
'tokenizer' => 'whitespace',
'filter' => [
'lowercase',
'word_delimiter',
],
],
],
],
]; For mapping, you can set a protected $mappingProperties = array(
'title' => array(
'type' => 'string',
'analyzer' => 'standard'
)
); If you'd like to setup a model's type mapping based on your mapping properties, you can use: Book::putMapping($ignoreConflicts = true); To delete a mapping: Book::deleteMapping(); To rebuild (delete and re-add, useful when you make important changes to your mapping) a mapping: Book::rebuildMapping(); You can also get the type mapping and check if it exists. Book::mappingExists();
Book::getMapping(); Setting a Custom Index NameBy default, Elasticquent will look for the return array(
// Other configuration keys ...
/*
|--------------------------------------------------------------------------
| Default Index Name
|--------------------------------------------------------------------------
|
| This is the index name that Elastiquent will use for all
| Elastiquent models.
*/
'default_index' => 'my_custom_index_name',
); If you'd like to have a more dynamic index, you can also override the default configuration with a function getIndexName()
{
return 'custom_index_name';
} Note: If no index was specified, Elasticquent will use a hardcoded string with the value of Setting a Custom Type NameBy default, Elasticquent will use the table name of your models as the type name for indexing. If you'd like to override it, you can with the function getTypeName()
{
return 'custom_type_name';
} To check if the type for the Elasticquent model exists yet, use $typeExists = Book::typeExists(); Indexing DocumentsTo index all the entries in an Eloquent model, use Book::addAllToIndex(); You can also index a collection of models: $books = Book::where('id', '<', 200)->get();
$books->addToIndex(); You can index individual entries as well: $book = Book::find($id);
$book->addToIndex(); You can also reindex an entire model: Book::reindex(); SearchingThere are three ways to search in Elasticquent. All three methods return a search collection. Simple term searchThe first method is a simple term search that searches all fields. $books = Book::search('Moby Dick'); Query Based SearchThe second is a query based search for more complex searching needs: public static function searchByQuery($query = null, $aggregations = null, $sourceFields = null, $limit = null, $offset = null, $sort = null) Example: $books = Book::searchByQuery(array('match' => array('title' => 'Moby Dick'))); Here's the list of available parameters:
Raw queriesThe final method is a raw query that will be sent to Elasticsearch. This method will provide you with the most flexibility when searching for records inside Elasticsearch: $books = Book::complexSearch(array(
'body' => array(
'query' => array(
'match' => array(
'title' => 'Moby Dick'
)
)
)
)); This is the equivalent to: $books = Book::searchByQuery(array('match' => array('title' => 'Moby Dick'))); Search CollectionsWhen you search on an Elasticquent model, you get a search collection with some special functions. You can get total hits: $books->totalHits(); Access the shards array: $books->shards(); Access the max score: $books->maxScore(); Access the timed out boolean property: $books->timedOut(); And access the took property: $books->took(); And access search aggregations - See Aggregations for details: $books->getAggregations(); Search Collection DocumentsItems in a search result collection will have some extra data that comes from Elasticsearch. You can always check and see if a model is a document or not by using the $book->isDocument(); You can check the document score that Elasticsearch assigned to this document with: $book->documentScore(); Chunking results from ElastiquentSimilar to $all_books = Book::searchByQuery(array('match' => array('title' => 'Moby Dick')));
$books = $all_books->chunk(10); Using the Search Collection Outside of ElasticquentIf you're dealing with raw search data from outside of Elasticquent, you can use the Elasticquent search results collection to turn that data into a collection. $client = new \Elasticsearch\Client();
$params = array(
'index' => 'default',
'type' => 'books'
);
$params['body']['query']['match']['title'] = 'Moby Dick';
$collection = Book::hydrateElasticsearchResult($client->search($params)); More OptionsDocument IDsElasticquent will use whatever is set as the Document DataBy default, Elasticquent will use the entire attribute array for your Elasticsearch documents. However, if you want to customize how your search documents are structured, you can set a function getIndexDocumentData()
{
return array(
'id' => $this->id,
'title' => $this->title,
'custom' => 'variable'
);
} Be careful with this, as Elasticquent reads the document source into the Eloquent model attributes when creating a search result collection, so make sure you are indexing enough data for your the model functionality you want to use. Using Elasticquent With Custom CollectionsIf you are using a custom collection with your Eloquent models, you just need to add the class MyCollection extends \Illuminate\Database\Eloquent\Collection
{
use ElasticquentCollectionTrait;
} RoadmapElasticquent currently needs:
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论