ride/lib-varnish
Composer 安装命令:
composer require ride/lib-varnish
包简介
Varnish library of the Ride framework.
README 文档
README
Varnish library of the PHP Ride framework.
What's In This Library
VarnishServer
The VarnishServer interface is used to manipulate a single Varnish server or a pool of servers transparantly.
VarnishAdmin
The VarnishAdmin class connects to a single Varnish server directly to send commands.
VarnishPool
The VarnishPool class can be used to create a pool of different VarnishAdmin instances. All commands of the VarnishServer interface will be invoked on all available servers in the pool.
Code Sample
Check this code sample to see some of this library's functionality:
<?php use ride\library\varnish\exception\V arnishException; use ride\library\varnish\VarnishAdmin; use ride\library\varnish\VarnishPool; try { // create a single server $varnish = new VarnishAdmin('localhost', 6082, 'your-secret'); // check if worker process is running $varnish->isRunning(); // true | false // start the cache process, this will call isRunning() internally $varnish->start(); // stop the cache process, this will call isRunning() internally $varnish->stop(); // ban with a URL and everything underneath it $varnish->banUrl('http://example.com/path', true); // ban with an expression $varnish->ban('req.http.host == "example.com" && req.url == "/path/to/page"'); // create a pool of servers $pool = new VarnishPool(); $pool->addServer($varnish); $pool->addServer(new VarnishAdmin('example.com', 6082, 'sneaky sneaky'); // ban with a URL or with an expression on all servers $pool->banUrl('http://example.com/path'); $pool->ban('req.http.host == "example.com" && req.url == "/path/to/page"'); } catch (VarnishException $exception) { // something went wrong }
Implementations
For more examples, you can check the following implementations of this library:
Installation
You can use Composer to install this library.
composer require ride/lib-varnish
ride/lib-varnish 适用场景与选型建议
ride/lib-varnish 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 27.46k 次下载、GitHub Stars 达 3, 最近一次更新时间为 2015 年 02 月 27 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 ride/lib-varnish 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ride/lib-varnish 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 27.46k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 3
- 依赖项目数: 6
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-02-27