jsyoo/phpcassa
Composer 安装命令:
composer require jsyoo/phpcassa
包简介
PHP Cassandra Library
关键字:
README 文档
README
phpcassa is a PHP client library for Apache Cassandra.
- Compatible with Cassandra 0.7 through 1.2
- Optional C extension for improved performance
phpcassa is compatible with PHP 5.3+
phpcassa is open source under the MIT license.
Deprecated
At this point, phpcassa has been deprecated and will no longer be supported.
I suggest using the DataStax PHP driver located here: https://github.com/datastax/php-driver. It supports CQL, has many excellent features, and is well maintained.
Documentation
While this README includes some useful information, the official and more thorough documentation can be found here:
http://thobbs.github.com/phpcassa
Examples
You can find a few fully working example scripts in the examples/ directory.
Opening Connections
$pool = new ConnectionPool('Keyspace1');
or
$pool = new ConnectionPool('Keyspace1', array('localhost'));
Create a column family object
$users = new ColumnFamily($pool, 'Standard1'); $super = new SuperColumnFamily($pool, 'Super1');
Inserting
$users->insert('key', array('column1' => 'value1', 'column2' => 'value2'));
Querying
$users->get('key'); $users->multiget(array('key1', 'key2'));
Removing
$users->remove('key1'); // removes whole row $users->remove('key1', 'column1'); // removes 'column1'
Other
$users->get_count('key1'); // counts the number of columns in row 'key1' $users->get_range('key1', 'key9'); // gets all rows with keys between '1' and '9'
Using the C Extension
The C extension is crucial for phpcassa's performance.
You need to configure and make to be able to use the C extension.
Note: if checkinstall is available, run sudo checkinstall in place of
sudo make install.
cd ext/thrift_protocol
phpize
./configure
make
sudo make install
Add the following line to your php.ini file:
extension=thrift_protocol.so
Getting Help
- Mailing list: phpcassa on google groups
- IRC: Channel #cassandra on irc.freenode.net
jsyoo/phpcassa 适用场景与选型建议
jsyoo/phpcassa 是一款 基于 Shell 开发的 Composer 扩展包,目前已累计 2.51k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2016 年 10 月 27 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「cassandra」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 jsyoo/phpcassa 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 jsyoo/phpcassa 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 jsyoo/phpcassa 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
The Cassandra php driver library IDE stubs which enables autocompletion in modern IDEs.
Cassandra Thrift Wrapper
Cassandra driver for Eloquent ORM
PHP Abstract Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.
Cassandra support for Lumen 5.7.x database query builder
Cassandra based query builder for laravel.
统计信息
- 总下载量: 2.51k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 7
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-10-27