用于Laravel的RoadRunner键值缓存器
Laravel  /  管理员 发布于 1年前   411
Laravel的Roadrunner KV Cache包
https://github.com/asanikovich/laravel-roadrunner-cache?ref=laravelnews
允许你使用Roadrunner Key-Value Plugin
https://roadrunner.dev/docs/kv-overview
作为缓存驱动:
use Illuminate\Support\Facades\Cache;
// Default main store - rr-memory
Cache::driver()->get('key');
// rr-boltdb store
Cache::driver('rr-boltdb')->get('key');
Key-Value插件允许在不同的HTTP请求或其他类型的应用程序(如CLI)之间在RoadRunner内部存储任意数据。
通过Roadrunner,如果你需要持久化存储,该软件包支持内存存储和boltdb驱动。
如果你的数据可能包含敏感信息,如个人用户数据,它还支持端到端加密序列化。
与其他缓存驱动一样,RoadRunner的Key-Value驱动可以配置多种选项。
下面是自述文件中
https://github.com/asanikovich/laravel-roadrunner-cache#config-file-example
缓存配置示例中的一些配置选项:
<?php
return [
'default' => 'rr-memory', // Default store (optional)
'stores' => [
'rr-memory' => [ // Custom store name with "memory" connection
'driver' => 'roadrunner',
'connection' => 'memory', // section name from KV plugin settings in RoadRunner config file (.rr.yaml)
'serializer' => null, // Available options: null|igbinary
'encryption_key' => null, // Available options: null|string
],
'rr-memory-igbinary-encrypted' => [ // Custom store name with "memory" connection and encrypted "igbinary" serializer
'driver' => 'roadrunner',
'connection' => 'memory', // section name from KV plugin settings in RoadRunner config file (.rr.yaml)
'serializer' => 'igbinary', // Available options: null|igbinary
'encryption_key' => 'key1', // Available options: null|string
],
'rr-memory-encrypted' => [ // Custom store name with "memory" connection and encrypted serializer
'driver' => 'roadrunner',
'connection' => 'memory', // section name from KV plugin settings in RoadRunner config file (.rr.yaml)
'serializer' => null, // Available options: null|igbinary
'encryption_key' => 'key2', // Available options: null|string
],
],
],
您可以在GitHub上了解laravel-roadrunner-cache软件包的更多信息,
获得完整的安装说明,并查看源代码:
https://github.com/asanikovich/laravel-roadrunner-cache
123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..路人 在
php中使用hyperf框架调用讯飞星火大模型实现国内版chatgpt功能示例中评论 教程很详细,如果加个前端chatgpt对话页面就完美了..Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号