Before you begin
After configuring what entities to index, you can send data to Algolia. This guide uses this Post entity and the following configuration:YAML
Manual indexing
With the CLI
Once yourindices
configuration is ready,
you can use the built-in console command to import all existing data:
Programmatically
To index any entities in your code, use theSearchService
.
Pass it the ObjectManager
associated with your objects and the objects to index.
Objects can be a single entity,
an array of entities or even an array of different entities as long as they are using the same ObjectManager
.
PHP
index
method,
the $requestOptions
array or object.
You can add any parameter, such as extra headers or the autoGenerateObjectIDIfNotExist
parameter.
PHP
index
method, along with all the methods used to manage your data and indexes in the SearchService
,
is waitable.
By chaining the function wait()
to your operation,
you’re saying explicitly that you want to wait for the engine to finish processing your task before moving on.
PHP
Manual deletion
With the CLI
To completely clear your indices (before reindexing for example), use thesearch:clear
command.
Programmatically
The same way you index data, you can use theremove
method to delete entries from the Algolia index.
PHP
$requestOptions
:
PHP
PHP
Automatic indexing with Doctrine events
By default, the bundle listens to the following Doctrine events:postPersist
, postUpdate
, preRemove
.
Every time data is inserted, updated, or deleted using Doctrine, your Algolia index will stay in sync.
You can easily modify which events the bundle subscribes to with the doctrineSubscribedEvents
configuration key.
You can unsubscribe from all events by passing an empty array.
This can become very handy if you are working with a queue (like RabbitMQ) or if you don’t want to call Algolia in your development environment.
YAML
Conditional indexing
Most of the time, there are some of your items that you don’t want to index. For instance, you may want to only index a post if it’s published. In your configuration, you can specify when a post should be indexed with theindex_if
key.
Because Algolia relies on the PropertyAccess component you can pass a method name, a class property name or even a nested key in an property array.
The property must evaluate to true to index the entity and false to bypass indexing.
If you’re updating an entity using Doctrine and this property evaluates to false, the entity will be removed.
Example with a method or a property
YAML
isPublished
could be a method or a class property.
With a method:
PHP
PHP
YAML
PHP
Connection errors
Are you getting “Impossible to connect”, “Unable to connect”, or “Unreachable hosts” errors? First, make sure the issue isn’t at your end:- Ensure you’re using the correct application ID and API key. Find these credentials on your Algolia dashboard.
- Check for recent changes in your code.
- Check the status of your data center provider.
If you’re using Firebase, you can only access Algolia from a paid Firebase tier.
- The name of your Symfony integration and its version number
- A code snippet to reproduce the issue
- Error message or stack trace (if applicable)
- The name of the Algolia index that’s causing problems
- The exact UTC time of the event
-
If you can’t connect to the Algolia API from your servers, send the output from the following command (run on any affected server):
Replace
ALGOLIA_APPLICATION_ID
with your Algolia application ID.
Indexing errors
AnyRecord at the position XX objectID=XX is too big
errors during indexing are because you’ve exceeded the size limit for records.
Reduce the size of your records and try again.