Methods |
protected
|
newSearchQuery($model)
|
#
|
protected
|
processString(string $content): string
Apply the filters to the indexed content or search terms, tokenize it
and stem the words.
Apply the filters to the indexed content or search terms, tokenize it
and stem the words.
|
#
|
public
|
update(Collection $models): void
Update the given model in the index.
Update the given model in the index.
Implements
|
#
|
public
|
delete(Collection $models): void
Remove the given model from the index.
Remove the given model from the index.
Implements
|
#
|
public
|
search(Builder $builder): mixed
Perform the given search on the engine.
Perform the given search on the engine.
Implements
|
#
|
public
|
paginate(Builder $builder, int $perPage, int $page): mixed
Perform the given search on the engine.
Perform the given search on the engine.
Implements
|
#
|
protected
|
performSearch(Builder $builder, array $options = []): mixed
Perform the given search on the engine.
Perform the given search on the engine.
|
#
|
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.
Implements
|
#
|
protected
|
getRecord(SearchIndex $hit): Model
Extract the Model from the search hit.
Extract the Model from the search hit.
|
#
|
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.
Implements
|
#
|
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.
Implements
|
#
|
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.
Implements
|
#
|
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.
Implements
|
#
|
public
|
createIndex(string $name, array $options = []): mixed
Create a search index.
|
#
|
public
|
deleteIndex(string $name): mixed
Delete a search index.
|
#
|