.. |
adlist.c
|
redis.c split into many different C files.
|
2010-07-01 14:38:51 +02:00 |
adlist.h
|
redis.c split into many different C files.
|
2010-07-01 14:38:51 +02:00 |
ae_epoll.c
|
redis.c split into many different C files.
|
2010-07-01 14:38:51 +02:00 |
ae_kqueue.c
|
redis.c split into many different C files.
|
2010-07-01 14:38:51 +02:00 |
ae_select.c
|
redis.c split into many different C files.
|
2010-07-01 14:38:51 +02:00 |
ae.c
|
redis.c split into many different C files.
|
2010-07-01 14:38:51 +02:00 |
ae.h
|
redis.c split into many different C files.
|
2010-07-01 14:38:51 +02:00 |
anet.c
|
Added a config directive for a Unix socket mask
|
2011-10-10 11:21:15 -07:00 |
anet.h
|
Added a config directive for a Unix socket mask
|
2011-10-10 11:21:15 -07:00 |
aof.c
|
Clear the AOF rewrite scheduled flag once an AOF rewrite is triggered. Fix for issue #161, probably fixing 159 as well.
|
2011-10-26 12:53:30 +02:00 |
asciilogo.h
|
ASCII ART FTW
|
2011-04-13 10:58:21 +02:00 |
bio.c
|
Comment out things in bio.c that are currently not useful but that may be useful in the future.
|
2011-09-19 17:06:27 +02:00 |
bio.h
|
REDIS_BIO_AOF_FSYNC implemented
|
2011-09-15 18:25:53 +02:00 |
cluster.c
|
Fixed a few warnings compiling on Linux.
|
2011-10-23 10:57:01 +02:00 |
config.c
|
7c6da73
|
2011-10-31 11:13:28 +01:00 |
config.h
|
ZMALLOC related stuff removed from config.h. They are now defined in zmalloc.h
|
2011-06-20 11:35:29 +02:00 |
crc16.c
|
Exact variant of CRC16 specified into crc16.c
|
2011-10-02 14:05:29 +02:00 |
db.c
|
FLUSHALL now prevents rdbSave() from resetting the dirty counter, so that the command will get replicated and put inside the AOF. This fixes issue #142
|
2011-10-17 10:31:47 +02:00 |
debug.c
|
More informative error when DEBUG RELOAD fails.
|
2011-10-14 14:31:33 +02:00 |
dict.c
|
Introduced a safe iterator interface that can be used to iterate while accessing the dictionary at the same time. Now the default interface is consireded unsafe and should be used only with dictNext()
|
2011-05-10 10:15:50 +02:00 |
dict.h
|
Introduced a safe iterator interface that can be used to iterate while accessing the dictionary at the same time. Now the default interface is consireded unsafe and should be used only with dictNext()
|
2011-05-10 10:15:50 +02:00 |
endian.c
|
endianess conversion API, to be applied to specially encoded data types for arch agnostic encoding.
|
2011-03-09 16:24:18 +01:00 |
endian.h
|
zipmaps are now endianess agnostic, needed for on disk serialization of zipmaps without convertions layers
|
2011-03-09 17:31:02 +01:00 |
fmacros.h
|
Compilation fixed on OpenBSD making sure that _XOPEN_SOURCE is set to 700 in fmacros.h
|
2011-09-29 10:20:03 +02:00 |
help.h
|
help.h updated
|
2010-12-19 15:19:08 +01:00 |
intset.c
|
encoding agnostic intsets
|
2011-03-09 19:14:04 +01:00 |
intset.h
|
encoded types API to get blob length
|
2011-02-28 14:48:49 +01:00 |
lzf_c.c
|
redis.c split into many different C files.
|
2010-07-01 14:38:51 +02:00 |
lzf_d.c
|
redis.c split into many different C files.
|
2010-07-01 14:38:51 +02:00 |
lzf.h
|
redis.c split into many different C files.
|
2010-07-01 14:38:51 +02:00 |
lzfP.h
|
redis.c split into many different C files.
|
2010-07-01 14:38:51 +02:00 |
Makefile
|
build: fix sunos build, compile lua with __C99FEATURES__=1
|
2011-10-30 03:20:00 +00:00 |
MANIFESTO
|
Redis manifesto added
|
2011-03-01 15:20:35 +01:00 |
mkreleasehdr.sh
|
redis.c split into many different C files.
|
2010-07-01 14:38:51 +02:00 |
multi.c
|
replaced redisAssert() with redisAssertWithInfo() in a shitload of places.
|
2011-10-04 18:43:03 +02:00 |
networking.c
|
useless double if removed.
|
2011-11-08 11:26:06 +01:00 |
object.c
|
replaced redisAssert() with redisAssertWithInfo() in a shitload of places.
|
2011-10-04 18:43:03 +02:00 |
pqsort.c
|
redis.c split into many different C files.
|
2010-07-01 14:38:51 +02:00 |
pqsort.h
|
redis.c split into many different C files.
|
2010-07-01 14:38:51 +02:00 |
pubsub.c
|
propagate PUBLISH messages using the redis cluster nodes bus. Still need to process the incoming packets of that type. Work in progress.
|
2011-10-07 15:37:34 +02:00 |
rand.c
|
libc neutral random function derived from a drand48() implementation added. Will be used to replace Lua's math.random implementation.
|
2011-09-23 14:51:48 +02:00 |
rand.h
|
Defined macro with bigger number that redisLrand48() can output.
|
2011-09-23 15:06:07 +02:00 |
rdb.c
|
A past commit removed the inclusion of redis.h from rdb.c, completely breaking 32 bit builds under Linux.
|
2011-10-23 10:42:16 +02:00 |
rdb.h
|
Move rdbLoad* to top; update comments
|
2011-05-13 23:24:19 +02:00 |
redis-benchmark.c
|
redis-benchmark: ability to run selected tests. Better help with examples.
|
2011-11-07 11:29:37 +01:00 |
redis-check-aof.c
|
redis.c split into many different C files.
|
2010-07-01 14:38:51 +02:00 |
redis-check-dump.c
|
Fixed a small memory leak I found with valgrind
|
2011-10-18 20:18:26 +09:00 |
redis-cli.c
|
Fixed a memory leak in redis-cli.c
|
2011-10-28 17:43:04 +02:00 |
redis-trib.rb
|
redis-trib: fix for a slot allocation bug.
|
2011-10-13 15:16:03 +02:00 |
redis.c
|
1fe4cd5
|
2011-10-31 11:14:24 +01:00 |
redis.h
|
hiredis/redis changes for speed with big payloads: read buffer size set
|
2011-11-08 10:59:59 +01:00 |
release.c
|
redis.c split into many different C files.
|
2010-07-01 14:38:51 +02:00 |
replication.c
|
7c6da73
|
2011-10-31 11:13:28 +01:00 |
rio.c
|
Fixed a few warnings compiling on Linux.
|
2011-10-23 10:57:01 +02:00 |
rio.h
|
rioInitWithFile nad rioInitWithBuffer functions now take a rio structure pointer to avoid copying a structure to return value to the caller.
|
2011-09-22 16:00:40 +02:00 |
scripting.c
|
If a Lua script executes for more time than the max time specified in the configuration Redis will log a warning, and will start accepting queries (re-entering the event loop), returning -SLOWSCRIPT error for all the commands but SHUTDOWN that remains callable.
|
2011-10-27 14:49:10 +02:00 |
sds.c
|
sdsMakeRoomFor() exposed as public API. sdsIncrLen() added. Both the changes make it possible to copy stuff from a system call to an sds buffer without the need of an additional buffer and copying overhead.
|
2011-11-02 16:50:59 +01:00 |
sds.h
|
sdsMakeRoomFor() exposed as public API. sdsIncrLen() added. Both the changes make it possible to copy stuff from a system call to an sds buffer without the need of an additional buffer and copying overhead.
|
2011-11-02 16:50:59 +01:00 |
sha1.c
|
byte ordering detection in config.h
|
2011-03-09 15:44:21 +01:00 |
sha1.h
|
redis.c split into many different C files.
|
2010-07-01 14:38:51 +02:00 |
slowlog.c
|
Added an unique ID field to every slow log entry.
|
2011-06-30 17:36:15 +02:00 |
slowlog.h
|
Added an unique ID field to every slow log entry.
|
2011-06-30 17:36:15 +02:00 |
solarisfixes.h
|
Fix for solaris compilation bug Issue 325
|
2010-09-06 10:12:44 +02:00 |
sort.c
|
replaced redisAssert() with redisAssertWithInfo() in a shitload of places.
|
2011-10-04 18:43:03 +02:00 |
syncio.c
|
Use rio.h functions in aof.c
|
2011-05-14 12:36:22 +02:00 |
t_hash.c
|
replaced redisAssert() with redisAssertWithInfo() in a shitload of places.
|
2011-10-04 18:43:03 +02:00 |
t_list.c
|
replaced redisAssert() with redisAssertWithInfo() in a shitload of places.
|
2011-10-04 18:43:03 +02:00 |
t_set.c
|
replaced redisAssert() with redisAssertWithInfo() in a shitload of places.
|
2011-10-04 18:43:03 +02:00 |
t_string.c
|
useless call removed, thanks to Pieter for spotting this
|
2011-06-20 16:42:37 +02:00 |
t_zset.c
|
Fixed a few warnings compiling on Linux.
|
2011-10-23 10:57:01 +02:00 |
testhelp.h
|
testhelp.h now exits with retcode 1 on failed tests.
|
2011-11-02 16:52:10 +01:00 |
util.c
|
fmacros in utils.c to avoid warning about strcasecmp()
|
2011-05-16 17:20:27 +02:00 |
util.h
|
Tests for string2ll; move isObject* to object.c
|
2011-05-05 16:26:50 +02:00 |
valgrind.sup
|
more valgrind friendly test
|
2011-07-06 15:22:00 +02:00 |
version.h
|
version bumped to 2.9, that is, 3.0 unstable
|
2011-04-15 17:44:08 +02:00 |
ziplist.c
|
Fixed a few warnings compiling on Linux.
|
2011-10-23 10:57:01 +02:00 |
ziplist.h
|
encoded types API to get blob length
|
2011-02-28 14:48:49 +01:00 |
zipmap.c
|
zipmaps are now endianess agnostic, needed for on disk serialization of zipmaps without convertions layers
|
2011-03-09 17:31:02 +01:00 |
zipmap.h
|
save zipmap encoded hashes as blobs. Work in progress.
|
2011-02-28 09:56:48 +01:00 |
zmalloc.c
|
no more allocation stats info in INFO, useless now that we have jemalloc.
|
2011-07-02 10:31:16 +02:00 |
zmalloc.h
|
no more allocation stats info in INFO, useless now that we have jemalloc.
|
2011-07-02 10:31:16 +02:00 |