snproject/bitter-bundle
最新稳定版本:1.0.0
Composer 安装命令:
composer require snproject/bitter-bundle
包简介
Implements a powerful analytics Symfony Bundle based on Bitter library using Redis bitmaps
README 文档
README
BitterBundle makes it easy to use the Bitter library to implement real-time highly-scalable analytics using Redis bitmaps in your Symfony 2 project. Please see the Bitter library website for more info and documentation about this project.
Installation
Use Composer to install: rezzza/bitter-bundle.
In your composer.json you should have:
{ "require": { "rezzza/bitter-bundle": "*" } }
Then update your AppKernel.php to register the bundle with:
new Rezzza\BitterBundle\RezzzaBitterBundle()
Bitter uses Redis (version >=2.6).
Configuration
Using SncRedisBundle redis client:
rezzza_bitter: redis_client: snc_redis.default
Using custom redis client:
rezzza_bitter: redis_client: your.very.best.redis.client
You can also configure custom values for prefix_key and expire_timeout:
rezzza_bitter: redis_client: snc_redis.default prefix_key: my_app # default - bitter expire_timeout: 300 # default - 60
Basic usage
Get Bitter:
$bitter = $this->container->get('rezzza.bitter');
Mark user 123 as active and has played a song:
$bitter->mark('active', 123); $bitter->mark('song:played', 123);
Note
Please look at Bitter for all examples.
Todo
- Add dashboard controller.
- Add tests
统计信息
- 总下载量: 18
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-12-01