biigle/laravel-cached-openstack
最新稳定版本:v1.6.0
Composer 安装命令:
composer require biigle/laravel-cached-openstack
包简介
A wrapper for the OpenStack SDK that caches and renews the authentication token
README 文档
README
A wrapper for the OpenStack SDK that caches and renews the authentication token. Works with Laravel and Lumen.
The wrapper is specifically intended for use in long running daemon queue workers as it renews the cached authentication token automatically.
Installation
composer require biigle/laravel-cached-openstack
Usage
use Biigle\CachedOpenStack\OpenStack; $cache = app('cache'); $options = [ // OpenStack options... ]; $openstack = new OpenStack($cache, $options);
Options
You can include cache options in the OpenStack options array. Example:
$options = [ 'cacheOptions' => [ 'ttl' => 3600, ], ]; $openstack = new OpenStack($cache, $options);
Available options:
ttl: Overrides the duration that the authentication token should be cached in seconds. If not set, the token is cached until itsexpires_atminus 60 seconds. Ifexpires_atis less than the specifiedttl,ttlis ignored.
统计信息
- 总下载量: 60.28k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-12-17