Update Redis documentation (4.0.11)

This commit is contained in:
Thibaut Courouble 2018-08-19 18:11:22 -04:00
parent 17b70ac46f
commit 7c4f71dd8d
2 changed files with 3 additions and 2 deletions

View file

@ -12,7 +12,7 @@ module Docs
when 'HDEL' then 'Hashes'
when 'BLPOP' then 'Lists'
when 'SADD' then 'Sets'
when 'ZADD' then 'Sorted Sets'
when 'BZPOPMAX' then 'Sorted Sets'
when 'PSUBSCRIBE' then 'Pub/Sub'
when 'DISCARD' then 'Transactions'
when 'EVAL' then 'Scripting'
@ -21,6 +21,7 @@ module Docs
when 'PFADD' then 'HyperLogLog'
when 'CLUSTER ADDSLOTS' then 'Cluster'
when 'GEOADD' then 'Geo'
when 'XADD' then 'Stream'
else 'Miscellaneous'
end
end

View file

@ -1,7 +1,7 @@
module Docs
class Redis < UrlScraper
self.type = 'redis'
self.release = '4.0.9'
self.release = '4.0.11'
self.base_url = 'https://redis.io/commands'
self.links = {
home: 'https://redis.io/',