summaryrefslogtreecommitdiff
path: root/src/rdb.c
Commit message (Expand)AuthorAgeFilesLines
* Merge upstream 2.6.14.2.6.14-1Yossi Gottlieb2013-06-231-6/+6
|\
| * Throttle BGSAVE attempt on saving error.antirez2013-04-021-0/+1
| * rdbLoad(): rework code to save vertical space.antirez2013-03-131-4/+2
| * Abort when opening the RDB file results in an error other than ENOENT.Damian Janowski2013-03-131-1/+0
* | Periodic fsync on aof rewrite and rdb snapshots to avoid high IO stalls when ...yoav2013-03-271-1/+1
* | Added optional db selection to BGSAVETO command.yoav2013-03-201-6/+17
* | Merge upstream Redis 2.6.9.2.6.9-1Yossi Gottlieb2013-01-271-5/+10
|\ \ | |/
| * Whitelist SIGUSR1 to avoid auto-triggering errors.antirez2013-01-191-1/+4
| * Fixed many typos.guiquanz2013-01-191-5/+5
* | Add scripting persistence and better replication support.Yossi Gottlieb2013-01-111-0/+40
* | Fix indent typo error.Yossi Gottlieb2013-01-101-1/+1
* | Added io checks when writing checksum into rdb.yoav2012-12-311-6/+6
* | Ignore special db version key when merging rdb's.yoav2012-12-301-6/+9
* | Fix warning in rdb-merger build.yoav2012-12-241-1/+1
* | Merge branch 'garantia-2.6' of https://github.com/GarantiaData/redis into gar...yoav2012-12-241-9/+93
|\ \
| * | Backward compatible RDB format for dbversion storage.Yossi Gottlieb2012-12-231-10/+44
| * | Add aof_rewrites and rdb_saves statistics.Yossi Gottlieb2012-12-201-0/+1
| * | Add BGSAVETO and dedicated SYNC background saving mechanism.Yossi Gottlieb2012-12-191-9/+46
| * | Create all temporary files in the same dir as the final file (and thus don't ...Yossi Gottlieb2012-12-181-2/+4
| * | Conditional replication.Yossi Gottlieb2012-12-181-2/+12
* | | rdb merger utility for merging multiple rdb files into a single oneyoav2012-12-231-0/+149
|/ /
* | Chunked loading of RDB to prevent redis from stalling reading very large keys.yoav2012-12-121-9/+14
|/
* Children creating AOF or RDB files now report memory used by COW.antirez2012-11-201-0/+9
* BSD license added to every C source and header file.antirez2012-11-081-0/+29
* Update memory peak stats while loading RDB / AOF.antirez2012-10-241-0/+2
* Fixed some spelling errors in the commentsErik Dubbelboer2012-09-271-1/+1
* RDB type loading functions clarified in comments.antirez2012-06-021-1/+5
* Four new persistence fields in INFO. A few renamed.antirez2012-05-251-0/+3
* rdbLoad() should check REDIS_RDB_VERSION instead of hardcoded number.antirez2012-04-241-1/+1
* It is now possible to enable/disable RDB checksum computation from redis.conf...antirez2012-04-101-5/+10
* RDB files now embed a crc64 checksum. Version of RDB bumped to 5.antirez2012-04-101-1/+24
* Fixed compilation of new rio.c changes (typos and so forth.)antirez2012-04-101-2/+2
* Add checksum computation to rio.cantirez2012-04-101-2/+2
* For coverage testing use exit() instead of _exit() when termiating saving chi...antirez2012-04-081-1/+1
* Removed dead code: function rdbSaveTime() is no longer used since RDB now sav...antirez2012-04-071-5/+0
* Write RDB magic using a REDIS_RDB_VERSION define that is defined inside rdb.hantirez2012-04-021-1/+3
* Fixed memory leak in hash loading.antirez2012-03-231-1/+4
* RDB hashes loading, fixed another bug in the loading of HT-encoded hashes: wh...antirez2012-03-131-4/+4
* RDB hashes loading fixed removing the assertion that failed every time an HT-...antirez2012-03-131-2/+4
* RDB version is no 4, because small hashes are now encoded as ziplists, so old...antirez2012-03-101-2/+2
* Merge conflicts resolved.antirez2012-03-091-48/+97
|\
| * Test that zipmap from RDB is correctly convertedPieter Noordhuis2012-01-251-6/+10
| * Encode small hashes with a ziplistPieter Noordhuis2012-01-021-48/+93
* | Refuse writes if can't persist on disk.antirez2012-03-071-0/+4
* | Don't expire keys when loading an RDB after a SYNCPieter Noordhuis2012-02-161-2/+6
|/
* some RDB server struct fields renamed.antirez2011-12-211-9/+9
* more AOF server struct fields renamed.antirez2011-12-211-1/+1
* Fixed issues with expire introduced with latest millisecond resolution featur...antirez2011-11-121-1/+1
* Fixed a few typosantirez2011-11-091-1/+1
* Fixed bug breaking rdbSaveMillisecondTime() in 32 bit systems. Thanks to @any...antirez2011-11-091-1/+1