mirror of
http://github.com/valkey-io/valkey
synced 2024-11-21 16:46:15 +00:00
0bfccc55e2
This PR adds a spell checker CI action that will fail future PRs if they introduce typos and spelling mistakes. This spell checker is based on blacklist of common spelling mistakes, so it will not catch everything, but at least it is also unlikely to cause false positives. Besides that, the PR also fixes many spelling mistakes and types, not all are a result of the spell checker we use. Here's a summary of other changes: 1. Scanned the entire source code and fixes all sorts of typos and spelling mistakes (including missing or extra spaces). 2. Outdated function / variable / argument names in comments 3. Fix outdated keyspace masks error log when we check `config.notify-keyspace-events` in loadServerConfigFromString. 4. Trim the white space at the end of line in `module.c`. Check: https://github.com/redis/redis/pull/7751 5. Some outdated https link URLs. 6. Fix some outdated comment. Such as: - In README: about the rdb, we used to said create a `thread`, change to `process` - dbRandomKey function coment (about the dictGetRandomKey, change to dictGetFairRandomKey) - notifyKeyspaceEvent fucntion comment (add type arg) - Some others minor fix in comment (Most of them are incorrectly quoted by variable names) 7. Modified the error log so that users can easily distinguish between TCP and TLS in `changeBindAddr`
53 lines
1.7 KiB
Ruby
53 lines
1.7 KiB
Ruby
# redis-sha1.rb - Copyright (C) 2009 Salvatore Sanfilippo
|
|
# BSD license, See the COPYING file for more information.
|
|
#
|
|
# Performs the SHA1 sum of the whole dataset.
|
|
# This is useful to spot bugs in persistence related code and to make sure
|
|
# Slaves and Masters are in SYNC.
|
|
#
|
|
# If you hack this code make sure to sort keys and set elements as this are
|
|
# unsorted elements. Otherwise the sum may differ with equal dataset.
|
|
|
|
require 'rubygems'
|
|
require 'redis'
|
|
require 'digest/sha1'
|
|
|
|
def redisSha1(opts={})
|
|
sha1=""
|
|
r = Redis.new(opts)
|
|
r.keys('*').sort.each{|k|
|
|
vtype = r.type?(k)
|
|
if vtype == "string"
|
|
len = 1
|
|
sha1 = Digest::SHA1.hexdigest(sha1+k)
|
|
sha1 = Digest::SHA1.hexdigest(sha1+r.get(k))
|
|
elsif vtype == "list"
|
|
len = r.llen(k)
|
|
if len != 0
|
|
sha1 = Digest::SHA1.hexdigest(sha1+k)
|
|
sha1 = Digest::SHA1.hexdigest(sha1+r.list_range(k,0,-1).join("\x01"))
|
|
end
|
|
elsif vtype == "set"
|
|
len = r.scard(k)
|
|
if len != 0
|
|
sha1 = Digest::SHA1.hexdigest(sha1+k)
|
|
sha1 = Digest::SHA1.hexdigest(sha1+r.set_members(k).to_a.sort.join("\x02"))
|
|
end
|
|
elsif vtype == "zset"
|
|
len = r.zcard(k)
|
|
if len != 0
|
|
sha1 = Digest::SHA1.hexdigest(sha1+k)
|
|
sha1 = Digest::SHA1.hexdigest(sha1+r.zrange(k,0,-1).join("\x01"))
|
|
end
|
|
end
|
|
# puts "#{k} => #{sha1}" if len != 0
|
|
}
|
|
sha1
|
|
end
|
|
|
|
host = ARGV[0] || "127.0.0.1"
|
|
port = ARGV[1] || "6379"
|
|
db = ARGV[2] || "0"
|
|
puts "Performing SHA1 of Redis server #{host} #{port} DB: #{db}"
|
|
p "Dataset SHA1: #{redisSha1(:host => host, :port => port.to_i, :db => db)}"
|