Methods |
abstract
public
|
update(Collection $models): void
Update the given model in the index.
Update the given model in the index.
Implemented by
|
#
|
abstract
public
|
delete(Collection $models): void
Remove the given model from the index.
Remove the given model from the index.
Implemented by
|
#
|
abstract
public
|
search(Builder $builder): mixed
Perform the given search on the engine.
Perform the given search on the engine.
Implemented by
|
#
|
abstract
public
|
paginate(Builder $builder, int $perPage, int $page): mixed
Perform the given search on the engine.
Perform the given search on the engine.
Implemented by
|
#
|
abstract
public
|
mapIds(mixed $results): Collection
Pluck and return the primary keys of the given results.
Pluck and return the primary keys of the given results.
Implemented by
|
#
|
abstract
public
|
map(Builder $builder, mixed $results, Model $model): Collection
Map the given results to instances of the given model.
Map the given results to instances of the given model.
Implemented by
|
#
|
abstract
public
|
lazyMap(Builder $builder, mixed $results, Model $model): LazyCollection
Map the given results to instances of the given model via a lazy collection.
Map the given results to instances of the given model via a lazy collection.
Implemented by
|
#
|
abstract
public
|
getTotalCount(mixed $results): int
Get the total count from a raw result returned by the engine.
Get the total count from a raw result returned by the engine.
Implemented by
|
#
|
abstract
public
|
flush(Model $model): void
Flush all of the model's records from the engine.
Flush all of the model's records from the engine.
Implemented by
|
#
|
abstract
public
|
createIndex(string $name, array $options = []): mixed
Create a search index.
|
#
|
abstract
public
|
deleteIndex(string $name): mixed
Delete a search index.
|
#
|
public
|
mapIdsFrom(mixed $results, string $key): Collection
Pluck and return the primary keys of the given results using the given key name.
Pluck and return the primary keys of the given results using the given key name.
|
#
|
public
|
keys(Builder $builder): Collection
Get the results of the query as a Collection of primary keys.
Get the results of the query as a Collection of primary keys.
|
#
|
public
|
get(Builder $builder): Collection
Get the results of the given query mapped onto models.
Get the results of the given query mapped onto models.
|
#
|
public
|
cursor(Builder $builder): Collection
Get a lazy collection for the given query mapped onto models.
Get a lazy collection for the given query mapped onto models.
|
#
|