A Symfony2 bundle to manage state, configuration, locks and features flags
It currently uses Redis as a storage backend. phpredis needs to be installed.
Usage:
$lockManager = $container->get('socloz_state.lock_manager');
if ($lockManager->lock("lock_name") {
// do some stuff
$lockManager->unlock("lock_name");
}
Not yet implemented
Not yet implemented