luka-camernik/predis-compressible
最新稳定版本:v2.0.0
Composer 安装命令:
composer require luka-camernik/predis-compressible
包简介
Client gzip compression for Predis library
README 文档
README
Plugin for Predis to compress/decompress stored values transparently.
Currently supported commands:
- SET
- SETEX
- SETNX
- GET
- MSET
Installation:
composer require b1rdex/predis-compressible
Example usage:
<?php use B1rdex\PredisCompressible\Command\StringGet; use B1rdex\PredisCompressible\Command\StringGetMultiple; use B1rdex\PredisCompressible\Command\StringSet; use B1rdex\PredisCompressible\Command\StringSetExpire; use B1rdex\PredisCompressible\Command\StringSetMultiple; use B1rdex\PredisCompressible\Command\StringSetPreserve; use B1rdex\PredisCompressible\Compressor\ConditionalCompressorWrapper; use B1rdex\PredisCompressible\Compressor\GzipCompressor; use B1rdex\PredisCompressible\CompressProcessor; use Predis\Client; use Predis\Configuration\OptionsInterface; use Predis\Profile\Factory; use Predis\Profile\RedisProfile; // strings with length > 2048 bytes will be compressed $compressor = new ConditionalCompressorWrapper(2048, new GzipCompressor()); $client = new Client([], [ 'profile' => static function (OptionsInterface $options) use ($compressor) { $profile = Factory::getDefault(); if ($profile instanceof RedisProfile) { $processor = new CompressProcessor($compressor); $profile->setProcessor($processor); $profile->defineCommand('SET', StringSet::class); $profile->defineCommand('SETEX', StringSetExpire::class); $profile->defineCommand('PSETEX', StringSetExpire::class); $profile->defineCommand('SETNX', StringSetPreserve::class); $profile->defineCommand('GET', StringGet::class); $profile->defineCommand('MGET', StringGetMultiple::class); $profile->defineCommand('MSET', StringSetMultiple::class); $profile->defineCommand('MSETNX', StringSetMultiple::class); } return $profile; }, ]);
Compressed values are stored as is.
Default GzipCompressor uses gzencode php function to compress value with default parameters and gzdecode to decompress.
You can create your own compressor by implementing CompressorInterface.
Roadmap:
- Add more commands (
HSETand their get counterparts at least) - Make initialization simpler
统计信息
- 总下载量: 27k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-01-31