elfet/pure
最新稳定版本:v3.0.0
Composer 安装命令:
composer require elfet/pure
包简介
Pure PHP key-value storage
README 文档
README
This is simple key-value storage written on PHP. It does not use files, or other database, just pure PHP.
Installation
Via Composer:
composer require elfet/pure
Now you can run pure like this: php vendor/bin/pure
Or you can install PurePHP globally to run pure by pure command.
Quick Guide
Start PurePHP by this command:
pure start &
Now PurePHP server is running. Run this command:
pure client
Now you can test PurePHP by simple commands like this:
> pure.queue.collection.push('hello')
> pure.queue.collection.push('world')
> pure.queue.collection.pop() ~ ' ' ~ pure.queue.collection.pop()
string(11) "hello world"
In pure console you can write commands on Expression Language. To exit from console type exit command.
Documentation
Connection to PurePHP server
$port = 1337; // Default port value $host = '127.0.0.1'; // Default host value //... $pure = new Pure\Client($port, $host);
Storages
PurePHP provide different types on storages. All supported storages are in src/Storage. You can access them by next methods and work with them like you work with them directly.
You do not need to manually create any collection. They will be automatically create at first access.
$pure->map('collection')->... $pure->stack('collection')->... $pure->queue('collection')->... $pure->priority('collection')->...
Or you can access them by magic methods.
$pure->map->collection->... $pure->stack->collection->... $pure->queue->collection->... //...
Array Storage ->map
This is simple storage what uses php array to store your data.
To store date in collection use push method:
$pure->map('collection')->push(['hello' => 'world']);
To get value by key from collection use get method:
$value = $pure->map('collection')->get('hello'); // will return 'world'.
To receive all elements use all method:
$all = $pure->map('collection')->all();
You can check if key exist by has method, and delete element by delete method.
Stack Storage ->stack
This storage use SplStack to store your data.
You can use all SplStack methods and also all method.
Queue Storage ->queue
This storage use SplQueue to store your data.
You can use SplQueue methods and also all method.
SplQueue uses enqueue and deenqueue to push and pop from queue. In QueueStorage your can use push and pop methods to do this.
Priority Queue Storage ->priority
This storage use SplPriorityQueue to store your data.
You can use all SplPriorityQueue methods and also all method.
Filtering
Every storage support function filter.
Example:
// Get all elements that more than a 100. $result = $pure->queue('collection')->filter('value > 100'); // Limit to 10. $result = $pure->priority('collection')->filter('value > 100', 10); // Complex expression. $result = $pure->of('collection')->filter('value["year"] > 2000 and value["name"] matches "/term/"');
Filter rules uses Expression Language.
In expression available two variables: key and value.
Deleting
You can delete storages by delete method:
$pure->delete('collection');
TODO
- Dump to file
- Load from file
- Replication
- Sharding
elfet/pure 适用场景与选型建议
elfet/pure 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.74M 次下载、GitHub Stars 达 87, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 elfet/pure 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 elfet/pure 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.74M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 88
- 点击次数: 24
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 未知