Download the PHP package mawebcoder/laravel-elasticsearch without Composer
On this page you can find all versions of the php package mawebcoder/laravel-elasticsearch. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mawebcoder/laravel-elasticsearch
More information about mawebcoder/laravel-elasticsearch
Files in mawebcoder/laravel-elasticsearch
Package laravel-elasticsearch
Short Description laravel package for Elasticsearch ORM
License MIT
Informations about the package laravel-elasticsearch
laravel-elasticsearch (Elastiquent-PHP)
By using an Eloquent-like query builder, you can tame the beast without having to worry about Elasticsearch's monstrous syntax.
You can use this package without needing to master Elasticsearch deeply and save your time by not having to memorize the higherarchical nested syntax.
Dependencies
Elasticsearch Version | Package Version | PHP Version | Laravel |
---|---|---|---|
7.17.9 | 2.6.3 and lower | ^8.1 | ^9.0 |
^8.0 | ^3.0 | ^8.1 | ^9.0 |
Config file and Elasticsearch migration log
In order to be able to save logs related to migrations and customize your configurations, you need to run command below:
php artisan vendor:publish --tag=elastic
Then migrate your database :
php artisan migrate
Config
After publishing the config file, you will see the following content
ORM
This package has added ORM
functionality to make it easier to work with documentation, just like what we see in
Laravel.We will get to know more as we go forward.Let's dive into it
Models
to be able to have a more effective relationship with our documents, we need to have a model for each index. Models similar to what we see in Laravel greatly simplify the work of communicating with the database.
In order to create a Model:
php artisan elastic:make-model <model-name>
By default, your models base path is in app/Elasticsearch/Models
directory, But you can define your own base path
in config/elasticsearch.php
file.
All your models must inherit from the BaseElasticsearchModel
class. This class is an abstract class that enforce you
to implement the getIndex
method that returns the index name of model.
We use the return value of this method to create the index you want in migrations.
If you want to get your index name with the prefix that you defined in config file:
Migrations
As you may know, Elasticsearch uses mappings for the structure of its documents, which may seem a little difficult to
create in raw form. In order to simplify this process, we use migrations to make this process easier.
After defining the model, you have to create a migration to register your desired fields.All your migrations must
inherit from the BaseElasticMigration
abstract class.
To Create a new Migration:
php artisan elastic:make-migration <migration-name>
By default, your migrations base path is in app/Elasticsearch/Migrations
directory, but you can define your own base
path in config/elasticsearch.php
file.
Unfortunately, the package cannot automatically find the path of your migrations. To introduce the path of migrations,put the sample code below in one of your providers:
To see migrations states :
php artisan elastic:migrate-status
To migrate migrations and create your indices mappings :
php artisan elastic:migrate
To reset all migrations(this command just runs down
method in all migrations) :
php artisan elstic:migrate --reset
To drop all indices and register them again:
php artisan elastic:migrate --fresh
To rollback migration:
php artisan elastic:migrate-rollback
By default, this command rollbacks the migrations just one step.if you want to determine steps by yourself:
php artisan elastic:migrate-rollback --step=<number>
Field Types
Integer
String(keyword)
Object
Boolean
SmallInteger(short)
BigInteger(long)
Double
Float
TinyInt(byte)
Text
DateTime(date)
Edit Indices Mappings
Sometimes you need modify your mappings. To do this you have to add a new migration:
php artisan elastic:make-migration <alter migration name>
As you can see, we implemented AlterElasticIndexMigrationInterface
interface in our migration. Then in alterDown
method we wrote our rollback scenario.
Finally, migrate your migration:
php artisan elastic:migrate
Dynamic Mapping
By default, Elasticsearch detects the type of fields that you have not introduced in mapping and defines its type automatically. The package has disabled it by default. To activate it, do the following in your migration:
Query Builder
Just like Laravel, which enabled you to create complex and crude queries by using a series of pre-prepared methods, this package also uses this feature to give you a similar experience.
Store a recorde
- Note: If you don't pass any field that exists in your mappings,we set that as null by default
Store Several Records (Bulk Insert)
Sometimes, some items may not be saved in the database due to an error. you can check this like below:
Also if you want to rollback transaction if any error happend set the $withTransaction
argumet as true
:
this action will remove the imported items from database.
Find record
Remove record
Conditions
Equal
Not Equal
- Note:Do not use
=
,<>
operators ontext
fields because we used term in these operators.intext
field you need to uselike
ornot like
operator instead
Greater Than
Lower Than
Like
whereTerm
Sometimes you want to search for a specific phrase in a text. In this case, you can do the following :
whereIn
whereNotIn
whereBetween
whereNotBetween
whereNull
whereNotNull
Chaining
Fuzzy Search
Note: fuzzy search just works on the text fields
You can change the fuzziness value as you want
Get pure Query
Update record
Bulk update
Bulk delete
Take(limit)
Offset
select
OrderBy
- Note:Do not use orderBy on
text
fields because text is not optimized for sorting operation in Elasticsearch.But if you want to force to sort the texts set the fielddata=true:
By Adding above line you can use texts as sortable and in aggregations,but fielddata uses significant memory while indexing
Get specific field's value
Nested Search
First of all we need to define object
type in our migration:
If you have multi dimension objects like below:
Define your mappings Like below:
Destroy by id
Nested Queries
In order to create complex and nested queries, you can use the nesting function of the builder. There is no limit to the nesting of your queries:
Just pay attention that you need to return the queries inside closure otherwise it will be ignored
chunk
for better managing your memory usage you can use the chunk method :
Aggregations
By default, all related data also will be return, If you want just aggregations be in your result use take(0)
to
prevent oveloading data in you request
Count
bucket
By default, bucket method returns maximum 2147483647
number of the records,if You want to change it:
Min
Max
Avg
Sum
Unique
Sometimes you need to retrieve only unique records based on an criterion:
groupBy
In order to group data based on a criterion
Pagination
By default paginate methods paginates pages per 15 items,but you can change it:
The result will be something like this:
inRandomOrder
Sometimes you need to get random data from elasticsearch:
Interact With Documentations
Drop indices by name
Check index Exists
Get all indices
Drop index by model
Get all model fields
Get model mappings
Coming soon
- Histogram
- Define normalizer and tokenizer
- Raw Queries