在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):redis/redis-rb开源软件地址(OpenSource Url):https://github.com/redis/redis-rb开源编程语言(OpenSource Language):Ruby 99.1%开源软件介绍(OpenSource Introduction):redis-rbA Ruby client that tries to match Redis' API one-to-one, while still providing an idiomatic interface. See RubyDoc.info for the API docs of the latest published gem. Getting startedInstall with:
You can connect to Redis by instantiating the require "redis"
redis = Redis.new This assumes Redis was started with a default configuration, and is
listening on redis = Redis.new(host: "10.0.1.1", port: 6380, db: 15) You can also specify connection options as a redis = Redis.new(url: "redis://:[email protected]:6380/15") The client expects passwords with special chracters to be URL-encoded (i.e.
By default, the client will try to read the To connect to Redis listening on a Unix socket, try: redis = Redis.new(path: "/tmp/redis.sock") To connect to a password protected Redis instance, use: redis = Redis.new(password: "mysecret") To connect a Redis instance using ACL, use: redis = Redis.new(username: 'myname', password: 'mysecret') The Redis class exports methods that are named identical to the commands
they execute. The arguments these methods accept are often identical to
the arguments specified on the Redis website. For
instance, the redis.set("mykey", "hello world")
# => "OK"
redis.get("mykey")
# => "hello world" All commands, their arguments, and return values are documented and available on RubyDoc.info. Sentinel supportThe client is able to perform automatic failover by using Redis Sentinel. Make sure to run Redis 2.8+ if you want to use this feature. To connect using Sentinel, use: SENTINELS = [{ host: "127.0.0.1", port: 26380 },
{ host: "127.0.0.1", port: 26381 }]
redis = Redis.new(url: "redis://mymaster", sentinels: SENTINELS, role: :master)
If you want to authenticate Sentinel itself, you must specify the SENTINELS = [{ host: '127.0.0.1', port: 26380, password: 'mysecret' },
{ host: '127.0.0.1', port: 26381, password: 'mysecret' }]
redis = Redis.new(host: 'mymaster', sentinels: SENTINELS, role: :master) Cluster support
# Nodes can be passed to the client as an array of connection URLs.
nodes = (7000..7005).map { |port| "redis://127.0.0.1:#{port}" }
redis = Redis.new(cluster: nodes)
# You can also specify the options as a Hash. The options are the same as for a single server connection.
(7000..7005).map { |port| { host: '127.0.0.1', port: port } } You can also specify only a subset of the nodes, and the client will discover the missing ones using the CLUSTER NODES command. Redis.new(cluster: %w[redis://127.0.0.1:7000]) If you want the connection to be able to read from any replica, you must pass the Redis.new(cluster: nodes, replica: true) The calling code is responsible for avoiding cross slot commands. redis = Redis.new(cluster: %w[redis://127.0.0.1:7000])
redis.mget('key1', 'key2')
#=> Redis::CommandError (CROSSSLOT Keys in request don't hash to the same slot)
redis.mget('{key}1', '{key}2')
#=> [nil, nil]
Cluster mode with SSL/TLSSince Redis can return FQDN of nodes in reply to client since Redis.new(cluster: %w[rediss://foo.example.com:6379]) On the other hand, in Redis versions prior to Redis.new(cluster: %w[rediss://foo-endpoint.example.com:6379], fixed_hostname: 'foo-endpoint.example.com') In case of the above architecture, if you don't pass the Storing objectsRedis "string" types can be used to store serialized Ruby objects, for example with JSON: require "json"
redis.set "foo", [1, 2, 3].to_json
# => OK
JSON.parse(redis.get("foo"))
# => [1, 2, 3] PipeliningWhen multiple commands are executed sequentially, but are not dependent, the calls can be pipelined. This means that the client doesn't wait for reply of the first command before sending the next command. The advantage is that multiple commands are sent at once, resulting in faster overall execution. The client can be instructed to pipeline commands by using the
redis.pipelined do |pipeline|
pipeline.set "foo", "bar"
pipeline.incr "baz"
end
# => ["OK", 1] Executing commands atomicallyYou can use redis.multi do |transaction|
transaction.set "foo", "bar"
transaction.incr "baz"
end
# => ["OK", 1] FuturesReplies to commands in a pipeline can be accessed via the futures they
emit (since redis-rb 3.0). All calls on the pipeline object return a
redis.pipelined do |pipeline|
@set = pipeline.set "foo", "bar"
@incr = pipeline.incr "baz"
end
@set.value
# => "OK"
@incr.value
# => 1 Error HandlingIn general, if something goes wrong you'll get an exception. For example, if
it can't connect to the server a begin
redis.ping
rescue StandardError => e
e.inspect
# => #<Redis::CannotConnectError: Timed out connecting to Redis on 10.0.1.1:6380>
e.message
# => Timed out connecting to Redis on 10.0.1.1:6380
end See lib/redis/errors.rb for information about what exceptions are possible. TimeoutsThe client allows you to configure connect, read, and write timeouts.
Passing a single Redis.new(:timeout => 1) But you can use specific values for each of them: Redis.new(
:connect_timeout => 0.2,
:read_timeout => 1.0,
:write_timeout => 0.5
) All timeout values are specified in seconds. When using pub/sub, you can subscribe to a channel using a timeout as well: redis = Redis.new(reconnect_attempts: 0)
redis.subscribe_with_timeout(5, "news") do |on|
on.message do |channel, message|
# ...
end
end If no message is received after 5 seconds, the client will unsubscribe. ReconnectionsThe client allows you to configure how many Redis.new(
:reconnect_attempts => 10,
:reconnect_delay => 1.5,
:reconnect_delay_max => 10.0,
) The delay values are specified in seconds. With the above configuration, the
client would attempt 10 reconnections, exponentially increasing the duration
between each attempt but it never waits longer than This is the retry algorithm: attempt_wait_time = [(reconnect_delay * 2**(attempt-1)), reconnect_delay_max].min By default, this gem will only retry a connection once and then fail, but with the above configuration the reconnection attempt would look like this:
So if the reconnection attempt #10 succeeds 70 seconds have elapsed trying
to reconnect, this is likely fine in long-running background processes, but if
you use Redis to drive your website you might want to have a lower
SSL/TLS SupportThis library supports natively terminating client side SSL/TLS connections when talking to Redis via a server-side proxy such as stunnel, hitch, or ghostunnel. To enable SSL support, pass the redis = Redis.new(
:url => "rediss://:[email protected]:6381/15",
:ssl_params => {
:ca_file => "/path/to/ca.crt"
}
) The options given to Here is an example of passing in params that can be used for SSL client certificate authentication (a.k.a. mutual TLS): redis = Redis.new(
:url => "rediss://:[email protected]:6381/15",
:ssl_params => {
:ca_file => "/path/to/ca.crt",
:cert => OpenSSL::X509::Certificate.new(File.read("client.crt")),
:key => OpenSSL::PKey::RSA.new(File.read("client.key"))
}
) NOTE: SSL is only supported by the default "Ruby" driver Expert-Mode Options
Alternate driversBy default, redis-rb uses Ruby's socket library to talk with Redis. To use an alternative connection driver it should be specified as option when instantiating the client object. These instructions are only valid for redis-rb 3.0. For instructions on how to use alternate drivers from redis-rb 2.2, please refer to an older README. hiredisThe hiredis driver uses the connection facility of hiredis-rb. In turn, hiredis-rb is a binding to the official hiredis client library. It optimizes for speed, at the cost of portability. Because it is a C extension, JRuby is not supported (by default). It is best to use hiredis when you have large replies (for example:
In your Gemfile, include hiredis: gem "redis", "~> 3.0.1"
gem "hiredis", "~> 0.4.5" When instantiating the client object, specify hiredis: redis = Redis.new(:driver => :hiredis) synchronyThe synchrony driver adds support for em-synchrony. This makes redis-rb work with EventMachine's asynchronous I/O, while not changing the exposed API. The hiredis gem needs to be available as well, because the synchrony driver uses hiredis for parsing the Redis protocol. In your Gemfile, include em-synchrony and hiredis: gem "redis", "~> 3.0.1"
gem "hiredis", "~> 0.4.5"
gem "em-synchrony" When instantiating the client object, specify synchrony: redis = Redis.new(:driver => :synchrony) TestingThis library is tested against recent Ruby and Redis versions. Check Github Actions for the exact versions supported. See Also
ContributorsSeveral people contributed to redis-rb, but we would like to especially mention Ezra Zygmuntowicz. Ezra introduced the Ruby community to many new cool technologies, like Redis. He wrote the first version of this client and evangelized Redis in Rubyland. Thank you, Ezra. ContributingFork the project and send pull requests. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论