mirror of
https://github.com/predis/predis.git
synced 2026-09-15 04:47:01 +00:00
Redis 2.4 has now its server profile (but it's not the default one yet). The development profile is now Redis 2.6.
This commit is contained in:
+1
-1
@@ -10,7 +10,7 @@ For a version compatible with PHP 5.2 you must use the backported version from t
|
||||
|
||||
## Main features ##
|
||||
|
||||
- Full support for Redis _1.2_, _2.0_, _2.2_ and the last development version. Different versions are managed via server profiles.
|
||||
- Full support for Redis from _1.2_ to _2.4_ and the current development versions. Different versions are managed via server profiles.
|
||||
- Client-side sharding with support for consistent hashing and custom distribution strategies.
|
||||
- Command pipelining on single and aggregated connections.
|
||||
- Abstraction for Redis transactions (Redis >= 2.0) with support for CAS operations (Redis >= 2.2).
|
||||
|
||||
@@ -30,6 +30,7 @@ abstract class ServerProfile implements IServerProfile, IProcessingSupport {
|
||||
'1.2' => '\Predis\Profiles\ServerVersion12',
|
||||
'2.0' => '\Predis\Profiles\ServerVersion20',
|
||||
'2.2' => '\Predis\Profiles\ServerVersion22',
|
||||
'2.4' => '\Predis\Profiles\ServerVersion24',
|
||||
'default' => '\Predis\Profiles\ServerVersion22',
|
||||
'dev' => '\Predis\Profiles\ServerVersionNext',
|
||||
);
|
||||
|
||||
@@ -0,0 +1,184 @@
|
||||
<?php
|
||||
|
||||
namespace Predis\Profiles;
|
||||
|
||||
class ServerVersion24 extends ServerProfile {
|
||||
public function getVersion() { return '2.4'; }
|
||||
public function getSupportedCommands() {
|
||||
return array(
|
||||
/* ---------------- Redis 1.2 ---------------- */
|
||||
|
||||
/* commands operating on the key space */
|
||||
'exists' => '\Predis\Commands\KeyExists',
|
||||
'del' => '\Predis\Commands\KeyDelete',
|
||||
'type' => '\Predis\Commands\KeyType',
|
||||
'keys' => '\Predis\Commands\KeyKeys',
|
||||
'randomkey' => '\Predis\Commands\KeyRandom',
|
||||
'rename' => '\Predis\Commands\KeyRename',
|
||||
'renamenx' => '\Predis\Commands\KeyRenamePreserve',
|
||||
'expire' => '\Predis\Commands\KeyExpire',
|
||||
'expireat' => '\Predis\Commands\KeyExpireAt',
|
||||
'ttl' => '\Predis\Commands\KeyTimeToLive',
|
||||
'move' => '\Predis\Commands\KeyMove',
|
||||
'sort' => '\Predis\Commands\KeySort',
|
||||
|
||||
/* commands operating on string values */
|
||||
'set' => '\Predis\Commands\StringSet',
|
||||
'setnx' => '\Predis\Commands\StringSetPreserve',
|
||||
'mset' => '\Predis\Commands\StringSetMultiple',
|
||||
'msetnx' => '\Predis\Commands\StringSetMultiplePreserve',
|
||||
'get' => '\Predis\Commands\StringGet',
|
||||
'mget' => '\Predis\Commands\StringGetMultiple',
|
||||
'getset' => '\Predis\Commands\StringGetSet',
|
||||
'incr' => '\Predis\Commands\StringIncrement',
|
||||
'incrby' => '\Predis\Commands\StringIncrementBy',
|
||||
'decr' => '\Predis\Commands\StringDecrement',
|
||||
'decrby' => '\Predis\Commands\StringDecrementBy',
|
||||
|
||||
/* commands operating on lists */
|
||||
'rpush' => '\Predis\Commands\ListPushTail',
|
||||
'lpush' => '\Predis\Commands\ListPushHead',
|
||||
'llen' => '\Predis\Commands\ListLength',
|
||||
'lrange' => '\Predis\Commands\ListRange',
|
||||
'ltrim' => '\Predis\Commands\ListTrim',
|
||||
'lindex' => '\Predis\Commands\ListIndex',
|
||||
'lset' => '\Predis\Commands\ListSet',
|
||||
'lrem' => '\Predis\Commands\ListRemove',
|
||||
'lpop' => '\Predis\Commands\ListPopFirst',
|
||||
'rpop' => '\Predis\Commands\ListPopLast',
|
||||
'rpoplpush' => '\Predis\Commands\ListPopLastPushHead',
|
||||
|
||||
/* commands operating on sets */
|
||||
'sadd' => '\Predis\Commands\SetAdd',
|
||||
'srem' => '\Predis\Commands\SetRemove',
|
||||
'spop' => '\Predis\Commands\SetPop',
|
||||
'smove' => '\Predis\Commands\SetMove',
|
||||
'scard' => '\Predis\Commands\SetCardinality',
|
||||
'sismember' => '\Predis\Commands\SetIsMember',
|
||||
'sinter' => '\Predis\Commands\SetIntersection',
|
||||
'sinterstore' => '\Predis\Commands\SetIntersectionStore',
|
||||
'sunion' => '\Predis\Commands\SetUnion',
|
||||
'sunionstore' => '\Predis\Commands\SetUnionStore',
|
||||
'sdiff' => '\Predis\Commands\SetDifference',
|
||||
'sdiffstore' => '\Predis\Commands\SetDifferenceStore',
|
||||
'smembers' => '\Predis\Commands\SetMembers',
|
||||
'srandmember' => '\Predis\Commands\SetRandomMember',
|
||||
|
||||
/* commands operating on sorted sets */
|
||||
'zadd' => '\Predis\Commands\ZSetAdd',
|
||||
'zincrby' => '\Predis\Commands\ZSetIncrementBy',
|
||||
'zrem' => '\Predis\Commands\ZSetRemove',
|
||||
'zrange' => '\Predis\Commands\ZSetRange',
|
||||
'zrevrange' => '\Predis\Commands\ZSetReverseRange',
|
||||
'zrangebyscore' => '\Predis\Commands\ZSetRangeByScore',
|
||||
'zcard' => '\Predis\Commands\ZSetCardinality',
|
||||
'zscore' => '\Predis\Commands\ZSetScore',
|
||||
'zremrangebyscore' => '\Predis\Commands\ZSetRemoveRangeByScore',
|
||||
|
||||
/* connection related commands */
|
||||
'ping' => '\Predis\Commands\ConnectionPing',
|
||||
'auth' => '\Predis\Commands\ConnectionAuth',
|
||||
'select' => '\Predis\Commands\ConnectionSelect',
|
||||
'echo' => '\Predis\Commands\ConnectionEcho',
|
||||
'quit' => '\Predis\Commands\ConnectionQuit',
|
||||
|
||||
/* remote server control commands */
|
||||
'info' => '\Predis\Commands\ServerInfo',
|
||||
'slaveof' => '\Predis\Commands\ServerSlaveOf',
|
||||
'monitor' => '\Predis\Commands\ServerMonitor',
|
||||
'dbsize' => '\Predis\Commands\ServerDatabaseSize',
|
||||
'flushdb' => '\Predis\Commands\ServerFlushDatabase',
|
||||
'flushall' => '\Predis\Commands\ServerFlushAll',
|
||||
'save' => '\Predis\Commands\ServerSave',
|
||||
'bgsave' => '\Predis\Commands\ServerBackgroundSave',
|
||||
'lastsave' => '\Predis\Commands\ServerLastSave',
|
||||
'shutdown' => '\Predis\Commands\ServerShutdown',
|
||||
'bgrewriteaof' => '\Predis\Commands\ServerBackgroundRewriteAOF',
|
||||
|
||||
|
||||
/* ---------------- Redis 2.0 ---------------- */
|
||||
|
||||
/* commands operating on string values */
|
||||
'setex' => '\Predis\Commands\StringSetExpire',
|
||||
'append' => '\Predis\Commands\StringAppend',
|
||||
'substr' => '\Predis\Commands\StringSubstr',
|
||||
|
||||
/* commands operating on lists */
|
||||
'blpop' => '\Predis\Commands\ListPopFirstBlocking',
|
||||
'brpop' => '\Predis\Commands\ListPopLastBlocking',
|
||||
|
||||
/* commands operating on sorted sets */
|
||||
'zunionstore' => '\Predis\Commands\ZSetUnionStore',
|
||||
'zinterstore' => '\Predis\Commands\ZSetIntersectionStore',
|
||||
'zcount' => '\Predis\Commands\ZSetCount',
|
||||
'zrank' => '\Predis\Commands\ZSetRank',
|
||||
'zrevrank' => '\Predis\Commands\ZSetReverseRank',
|
||||
'zremrangebyrank' => '\Predis\Commands\ZSetRemoveRangeByRank',
|
||||
|
||||
/* commands operating on hashes */
|
||||
'hset' => '\Predis\Commands\HashSet',
|
||||
'hsetnx' => '\Predis\Commands\HashSetPreserve',
|
||||
'hmset' => '\Predis\Commands\HashSetMultiple',
|
||||
'hincrby' => '\Predis\Commands\HashIncrementBy',
|
||||
'hget' => '\Predis\Commands\HashGet',
|
||||
'hmget' => '\Predis\Commands\HashGetMultiple',
|
||||
'hdel' => '\Predis\Commands\HashDelete',
|
||||
'hexists' => '\Predis\Commands\HashExists',
|
||||
'hlen' => '\Predis\Commands\HashLength',
|
||||
'hkeys' => '\Predis\Commands\HashKeys',
|
||||
'hvals' => '\Predis\Commands\HashValues',
|
||||
'hgetall' => '\Predis\Commands\HashGetAll',
|
||||
|
||||
/* transactions */
|
||||
'multi' => '\Predis\Commands\TransactionMulti',
|
||||
'exec' => '\Predis\Commands\TransactionExec',
|
||||
'discard' => '\Predis\Commands\TransactionDiscard',
|
||||
|
||||
/* publish - subscribe */
|
||||
'subscribe' => '\Predis\Commands\PubSubSubscribe',
|
||||
'unsubscribe' => '\Predis\Commands\PubSubUnsubscribe',
|
||||
'psubscribe' => '\Predis\Commands\PubSubSubscribeByPattern',
|
||||
'punsubscribe' => '\Predis\Commands\PubSubUnsubscribeByPattern',
|
||||
'publish' => '\Predis\Commands\PubSubPublish',
|
||||
|
||||
/* remote server control commands */
|
||||
'config' => '\Predis\Commands\ServerConfig',
|
||||
|
||||
|
||||
/* ---------------- Redis 2.2 ---------------- */
|
||||
|
||||
/* commands operating on the key space */
|
||||
'persist' => '\Predis\Commands\KeyPersist',
|
||||
|
||||
/* commands operating on string values */
|
||||
'strlen' => '\Predis\Commands\StringStrlen',
|
||||
'setrange' => '\Predis\Commands\StringSetRange',
|
||||
'getrange' => '\Predis\Commands\StringGetRange',
|
||||
'setbit' => '\Predis\Commands\StringSetBit',
|
||||
'getbit' => '\Predis\Commands\StringGetBit',
|
||||
|
||||
/* commands operating on lists */
|
||||
'rpushx' => '\Predis\Commands\ListPushTailX',
|
||||
'lpushx' => '\Predis\Commands\ListPushHeadX',
|
||||
'linsert' => '\Predis\Commands\ListInsert',
|
||||
'brpoplpush' => '\Predis\Commands\ListPopLastPushHeadBlocking',
|
||||
|
||||
/* commands operating on sorted sets */
|
||||
'zrevrangebyscore' => '\Predis\Commands\ZSetReverseRangeByScore',
|
||||
|
||||
/* transactions */
|
||||
'watch' => '\Predis\Commands\TransactionWatch',
|
||||
'unwatch' => '\Predis\Commands\TransactionUnwatch',
|
||||
|
||||
/* remote server control commands */
|
||||
'object' => '\Predis\Commands\ServerObject',
|
||||
|
||||
|
||||
/* ---------------- Redis 2.4 ---------------- */
|
||||
|
||||
/* remote server control commands */
|
||||
'info' => '\Predis\Commands\ServerInfoV24x',
|
||||
'client' => '\Predis\Commands\ServerClient',
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -2,13 +2,10 @@
|
||||
|
||||
namespace Predis\Profiles;
|
||||
|
||||
class ServerVersionNext extends ServerVersion22 {
|
||||
public function getVersion() { return '2.4'; }
|
||||
class ServerVersionNext extends ServerVersion24 {
|
||||
public function getVersion() { return '2.6'; }
|
||||
public function getSupportedCommands() {
|
||||
return array_merge(parent::getSupportedCommands(), array(
|
||||
/* remote server control commands */
|
||||
'info' => '\Predis\Commands\ServerInfoV24x',
|
||||
'client' => '\Predis\Commands\ServerClient',
|
||||
'eval' => '\Predis\Commands\ServerEval',
|
||||
'evalsha' => '\Predis\Commands\ServerEvalSHA',
|
||||
));
|
||||
|
||||
Reference in New Issue
Block a user