Skip to content

a package to provide a ElasticSearch Sessions Driver for Laravel PHP Framework

License

Notifications You must be signed in to change notification settings

Bebbolus/ElasticSessions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ElasticSessions

a package to provide a ElasticSearch Sessions Driver for Laravel PHP Framework

Requirements

ElasticSessions is born on top of Elastiquent, you must be running at least Elasticsearch 1.0. Elasticsearch 0.9 and below will not work and are not supported.

You need to set-up your own Index and Type for sessions and configure it in .env (ELS_INDEX_USER, ELS_TYPE_SESSION)

Set up

To begin configuration, first update the composer.json with the relative requirement and autoload sections:

Require section for our custom package and third party libraries:

...
"require": {
    ...
    "elasticquent/elasticquent": "dev-master",
    "bebbolus/elasticsessions": "dev-master"
},
...

Now add the following code on App\Config\App.php

add app providers:

'providers' => [
    ...
    Elasticquent\ElasticquentServiceProvider::class,
    ElasticSessions\ElasticSessionsServiceProvider::class, #CUSTOM ELASTIC SESSION PROVIDER
],

add third party Package Facades:

'aliases' => [
    ...
    'Es' => Elasticquent\ElasticquentElasticsearchFacade::class,
],

run commands:

> composer dump-autoload -o
> composer update
> php artisan vendor:publish --force

The .env of DEFAULT DEVELOPMENT ENVIRONMENT:

SESSION_DRIVER=elastic

ELS_MAX_RESULT=20

ELS_SERVER=localhost
ELS_INDEX_USER=user
ELS_TYPE_SESSION=sessions

NB

edit the .env file with the right configuration parameters for the application you will develp i.e. all the ELS_* parameters, etc...

You need to set-up your own Index and Type for sessions and configure it in .env (ELS_INDEX_USER, ELS_TYPE_SESSION)

TODO

  1. TEST!!!!!!

Releases

No releases published

Packages

No packages published

Languages