Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | added support to dump registers on crash on Linux x64 | antirez | 2012-01-20 | 1 | -1/+28 | |
| | ||||||
* | all the stack trace related functions are now in debug.c. Now Redis dumps ↵ | antirez | 2012-01-20 | 1 | -0/+218 | |
| | | | | registers and stack content on crash. Currently osx supported, adding Linux right now. | |||||
* | On crash print information about the current client (if any), command ↵ | antirez | 2012-01-12 | 1 | -3/+17 | |
| | | | | vector, and object associated to first argument assuming it is a key. | |||||
* | some RDB server struct fields renamed. | antirez | 2011-12-21 | 1 | -2/+2 | |
| | ||||||
* | AOF fileds in the global server state, and define names, renamed with more ↵ | antirez | 2011-12-21 | 1 | -1/+1 | |
| | | | | consistent names. More work to do. | |||||
* | Do not propagate DEBUG LOADAOF | antirez | 2011-12-20 | 1 | -0/+1 | |
| | ||||||
* | better bug report info on crash | antirez | 2011-11-24 | 1 | -1/+8 | |
| | ||||||
* | Fixed issues with expire introduced with latest millisecond resolution ↵ | antirez | 2011-11-12 | 1 | -1/+1 | |
| | | | | feature. Many time_t were not converted to long long, and one time() call was not replaced with mstime(). | |||||
* | dict.c API names modified to be more coincise and consistent. | antirez | 2011-11-08 | 1 | -5/+5 | |
| | ||||||
* | More informative error when DEBUG RELOAD fails. | antirez | 2011-10-14 | 1 | -1/+1 | |
| | ||||||
* | redisAssertWithClientInfo() is now redisAssertWithInfo() that is also able ↵ | antirez | 2011-10-04 | 1 | -24/+35 | |
| | | | | to report an optional object. The client is also optional. Specifying NULL will prevent dumping the not available information (either client or object). | |||||
* | Introduced a redisAssert() variant that is able to show information about ↵ | antirez | 2011-10-04 | 1 | -0/+35 | |
| | | | | the client in the context where the failed assertion was detected. | |||||
* | DEUBG SLEEP implemented | antirez | 2011-06-30 | 1 | -0/+6 | |
| | ||||||
* | diskstore removed | antirez | 2011-06-25 | 1 | -20/+0 | |
| | ||||||
* | DEBUG DIGEST additional lookup needed for VM removed from unstable branch ↵ | antirez | 2011-05-10 | 1 | -1/+1 | |
| | | | | that does not have VM at all | |||||
* | Test for ENCODING_SKIPLIST instead of ENCODING_RAW | Pieter Noordhuis | 2011-04-06 | 1 | -1/+1 | |
| | ||||||
* | Fix DEBUG DIGEST, SORT and AOF rewrite | Pieter Noordhuis | 2011-03-14 | 1 | -13/+48 | |
| | ||||||
* | fixed bgsave_in_progress in INFO when BGSAVEing with diskstore enabled, ↵ | antirez | 2011-01-09 | 1 | -0/+3 | |
| | | | | don't DEBUG FLUSHCACHE when bgsave is in progress. | |||||
* | DEBUG FLUSHCACHE needs to wait that everything was synched on disk | antirez | 2011-01-09 | 1 | -0/+3 | |
| | ||||||
* | test adapted to run with diskstore, and a few bugs fixed | antirez | 2011-01-09 | 1 | -0/+13 | |
| | ||||||
* | DEBUG OBJECT fixed with diskstore, force loading | antirez | 2011-01-08 | 1 | -2/+3 | |
| | ||||||
* | FLUSHALL / FLUSHDB for diskstore implemented | antirez | 2011-01-03 | 1 | -0/+2 | |
| | ||||||
* | implemented a different approach to IO scheduling, so object->storage is no ↵ | antirez | 2011-01-01 | 1 | -9/+3 | |
| | | | | longer used, instead there is a queue and hash table of IO tasks to process, and it is always possible to know what are the scheduled and acrtive IO operations against every single key. | |||||
* | more step forwards for disk store to be able to run | antirez | 2010-12-29 | 1 | -47/+15 | |
| | ||||||
* | cow friendly HGETALL and variants | antirez | 2010-12-14 | 1 | -2/+2 | |
| | ||||||
* | SINTER/MEMBERS are now COW friendly, also some refactoring around was needed ↵ | antirez | 2010-12-09 | 1 | -1/+1 | |
| | | | | to get this result. | |||||
* | Stop using /dev/null to find out the serialized object length | Pieter Noordhuis | 2010-11-21 | 1 | -1/+1 | |
| | | | | | | Now the rdbSave* functions return the number of bytes written (or required to write) in serializing a Redis object, writing to /dev/null and using ftell (which doesn't work on FreeBSD) isn't needed anymore. | |||||
* | removed useless spaces from DEBUG OBJECT output | antirez | 2010-10-27 | 1 | -1/+1 | |
| | ||||||
* | Object approximated LRU algorithm enhanced / fixed / refactored. This is ↵ | antirez | 2010-10-14 | 1 | -2/+4 | |
| | | | | used for the VM currently but will soon be used for maxmemory expiring. | |||||
* | Use specialized function to add status and error replies | Pieter Noordhuis | 2010-09-02 | 1 | -17/+16 | |
| | ||||||
* | Rename iterator to setTypeIterator for consistency | Pieter Noordhuis | 2010-08-21 | 1 | -1/+1 | |
| | ||||||
* | fix aof and digest code to work with dual set encoding | Pieter Noordhuis | 2010-07-02 | 1 | -9/+6 | |
| | ||||||
* | Compilation fixed on Linux after the source code split | antirez | 2010-07-01 | 1 | -0/+2 | |
| | ||||||
* | redis.c split into many different C files. | antirez | 2010-07-01 | 1 | -0/+309 | |
networking related stuff moved into networking.c moved more code more work on layout of source code SDS instantaneuos memory saving. By Pieter and Salvatore at VMware ;) cleanly compiling again after the first split, now splitting it in more C files moving more things around... work in progress split replication code splitting more Sets split Hash split replication split even more splitting more splitting minor change |