erlementovich / reindexer-bundle
Symfony integration for Reindexer (https://github.com/Restream/reindexer)
Installs: 4 154
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=8.0
- smolevich/reindexer-client: ^2.0
- symfony/framework-bundle: ^6.0 || ^7.0
Requires (Dev)
- phpstan/phpstan: ^1.10
- symfony/yaml: ^6.0 || ^7.0
- symplify/easy-coding-standard: ^12.1
This package is auto-updated.
Last update: 2025-04-09 16:58:39 UTC
README
Reindexer is an embeddable, in-memory, document-oriented database with a high-level Query builder interface. Reindexer's goal is to provide fast search with complex queries. We at Restream weren't happy with Elasticsearch and created Reindexer as a more performant alternative. The core is written in C++ and the application level API is in Go.
Reindexer SDK for Symfony
This is the Symfony SDK for Reindexer.
Install
To install the SDK you will need to be using Composer in your project. To install it please see the docs.
composer require erlementovich/reindexer-bundle
If your project does not use Symfony Flex the following needs to be added to config/bundles.php
manually:
<?php return [ // other bundles here Pik\\Bundle\\ReindexerBundle\\ReindexerBundle::class => ['all' => true], ];
Configuration
Reindexer clients can be configured in config/packages/pik_reindexer.yaml
.
pik_reindexer: clients: first: url: 'http://url' dbname: 'firstdbname' auth: user: example_user password: 12345 api_class: App\Reindexer\Api second: url: 'http://url' dbname: 'seconddbname' # More clients here