index
:
delta/redis.git
1906-merge
2.2
2.4
2.6
2.8
2.8-fastscript
3.0
3.2
4.0
5.0
6.0
6.2
7.0
7.2
ack
acl
acl-api-pr
acl-log
antiaffinity
aofeof
aofrdb
argv-accounting
arm
baserock/3.0
baserock/ps/proto-web-system
better-random-member
bulkaccept-2.8
cgroups
client-unblock
cluster-api-improvements
cluster-data-as-pong
conduct
config-rewrite
cow-pipe
csc2
current-client-fix
dict-clustered-entries
dictc
diskless-short-read
diskless_slave_refresh2
dynamic-hz
expirealgo
faster-info
faster-ll2string
faster-rdb-loading
fasterio
fastscript
fix-double-multi
fix-expires-6537
free_clients_during_loading
freelist
fsync-safety
geo
hashed-pass-opcode
ipv6
issue-1240
issue_2175
latency
lazyfree
lcs
ldb
less-mstime
less-mstime-28
lfu
localtime
lpos
master-replica
meaningful-offset
memopt
memsync
module-block-on-keys
module-blocking-commands
module-hooks
module-io-context
modules-get-client-info-by-id
modules-replication
multi-if
new-keyspace
no-mo-first
no-mo-second
nordb
nosync
o1-bpop
o1-bpop-5.0
onepass-bulk
oran-memory-profiling
precise-timeout
precise-timeout-2
psync-fixes
psync2
psync2-rdb-fixes
psync2-test-improvement
queue-in-multi
rdb-check
rdb-script-aux
rdb9
rdbchanges
resp3
rssmaxmemory
sds
sentinel-32
sharedapi
siphash
slave-diskless
slave-script-timeout
slaves_capa
statemachine
strcompr
stream-propagation-fix
stream-propagation-fix-2
streams
testing
thread-safe-context
threaded-core-commands
threaded-io
tls-conn-errors
tracking-noloop
unstable
unstable_hmset_args
wait-aof
waitpid-fix
zaddnx
ziplist-improvements
zpop
zunion
github.com: antirez/redis.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
dict.c
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Fixed grammar: before H the article is a, not an.
antirez
2013-12-05
1
-2
/
+2
*
removed not used vars in dictScan().
antirez
2013-11-05
1
-3
/
+0
*
dictScan(): empty hash table requires special handling.
antirez
2013-10-28
1
-0
/
+2
*
Fixed typos in dictScan() comment.
antirez
2013-10-25
1
-2
/
+2
*
dictScan() algorithm documented.
antirez
2013-10-25
1
-0
/
+84
*
Fix error in scan algorithm
Pieter Noordhuis
2013-10-25
1
-8
/
+0
*
Add SCAN command
Pieter Noordhuis
2013-10-25
1
-0
/
+92
*
dictFingerprint(): cast pointers to integer of same size.
antirez
2013-08-20
1
-2
/
+2
*
Revert "Fixed type in dict.c comment: 265 -> 256."
antirez
2013-08-19
1
-1
/
+1
*
Fixed type in dict.c comment: 265 -> 256.
antirez
2013-08-19
1
-1
/
+1
*
assert.h replaced with redisassert.h when appropriate.
antirez
2013-08-19
1
-1
/
+1
*
dictFingerprint() fingerprinting made more robust.
antirez
2013-08-19
1
-9
/
+29
*
dict.c iterator API misuse protection.
antirez
2013-08-19
1
-4
/
+30
*
Fixed many typos.
guiquanz
2013-01-19
1
-1
/
+1
*
Remove unnecessary condition in _dictExpandIfNeeded (dict.c)
charsyam
2012-11-28
1
-2
/
+1
*
BSD license added to every C source and header file.
antirez
2012-11-08
1
-1
/
+1
*
Hash function switched to murmurhash2.
antirez
2012-10-05
1
-12
/
+56
*
Even inside #if 0 comments are comments.
antirez
2012-04-21
1
-2
/
+2
*
Merge pull request #440 from ErikDubbelboer/spelling
Salvatore Sanfilippo
2012-04-21
1
-8
/
+8
|
\
|
*
Update src/dict.c
Erik Dubbelboer
2012-04-07
1
-1
/
+1
|
*
Fixed some spelling errors in the comments
Erik Dubbelboer
2012-04-07
1
-8
/
+8
*
|
Currenly not used code in dict.c commented out.
antirez
2012-04-18
1
-14
/
+15
|
/
*
fix typo
huangz1990
2012-03-15
1
-1
/
+1
*
fixed typo in hahs function seed default value. It is no longer used but fixe...
antirez
2012-01-22
1
-1
/
+1
*
Fix for hash table collision attack. We simply randomize hash table initializ...
antirez
2012-01-21
1
-2
/
+12
*
dict.c: added macros in dict.h to set signed and unsigned 64 bit values direc...
antirez
2011-11-08
1
-1
/
+1
*
dict.c API names modified to be more coincise and consistent.
antirez
2011-11-08
1
-12
/
+12
*
dict.c: added two lower level methods for directly manipulating hash entries....
antirez
2011-11-08
1
-3
/
+38
*
added an union in the dict.h structure to store 64 bit integers directly into...
antirez
2011-11-02
1
-2
/
+1
*
Introduced a safe iterator interface that can be used to iterate while access...
antirez
2011-05-10
1
-5
/
+15
*
fixed two diskstore issues, a quasi-deadlock creating problems with I/O speed...
antirez
2011-02-11
1
-0
/
+1
*
command lookup process turned into a much more flexible and probably faster h...
antirez
2010-11-03
1
-0
/
+10
*
This should fix Issue 332: when there is a background process saving we still...
antirez
2010-09-15
1
-7
/
+21
*
hash table example commented out in dict.c
antirez
2010-07-27
1
-0
/
+7
*
Add zcalloc and use it where appropriate
Benjamin Kramer
2010-07-25
1
-4
/
+2
*
Remove _dictAlloc and friends
Benjamin Kramer
2010-07-24
1
-39
/
+12
*
Reduce code duplication
Benjamin Kramer
2010-07-24
1
-39
/
+21
*
redis.c split into many different C files.
antirez
2010-07-01
1
-0
/
+727
[prev]