duncan3dc/sessions
Composer 安装命令:
composer require duncan3dc/sessions
包简介
A non-blocking session manager
关键字:
README 文档
README
A non-blocking session handler for PHP
Full documentation is available at http://duncan3dc.github.io/sessions/
PHPDoc API documentation is also available at http://duncan3dc.github.io/sessions/api/
Quick Examples
$session = new \duncan3dc\Sessions\SessionInstance("my-app"); $session->set("current-status", 4); $currentStatus = $session->get("current-status");
Avoid common key clashes:
$session->set("user", "Mark"); $backend = $session->createNamespace("backend"); $backend->set("user", "Caroline"); $session->get("user"); # "Mark" $backend->get("user"); # "Caroline"
Store one-time flash messages:
$session->setFlash("message", "Your profile has been updated"); $session->getFlash("message"); # "Your profile has been updated"; $session->getFlash("message"); # null;
There is also a static class you can use with all the features above:
use \duncan3dc\Sessions\Session; Session::name("my-app"); Session::set("current-status", 4); $currentStatus = Session::get("current-status");
Read more at http://duncan3dc.github.io/sessions/
Changelog
A Changelog has been available since the beginning of time
Where to get help
Found a bug? Got a question? Just not sure how something works?
Please create an issue and I'll do my best to help out.
Alternatively you can catch me on Twitter
duncan3dc/sessions for enterprise
Available as part of the Tidelift Subscription
The maintainers of duncan3dc/sessions and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more.
duncan3dc/sessions 适用场景与选型建议
duncan3dc/sessions 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 250.81k 次下载、GitHub Stars 达 27, 最近一次更新时间为 2015 年 07 月 19 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「session」 「non-blocking」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 duncan3dc/sessions 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 duncan3dc/sessions 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 duncan3dc/sessions 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Secure session middleware for Slim 3 framework
Non-I/O blocking PHP SessionHandler implementation using Nette/Caching with DI Extension for Nette framework
Asynchronous parallel Twitter client built on the Amp concurrency framework
Magento - Clean up session extension
gv session wrapper
`codekandis/tiphy-session-integration` is a library integrating `codekandis/session` into `codekandis/tiphy`.
统计信息
- 总下载量: 250.81k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 28
- 点击次数: 25
- 依赖项目数: 8
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2015-07-19