Skip to content

erlementovich/reindexer-bundle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pik-reindexer

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

Latest Stable Version Total Downloads Latest Unstable Version License PHP Version Require

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages