summaryrefslogtreecommitdiff
path: root/src/rdb.h
Commit message (Expand)AuthorAgeFilesLines
* More powerful DEBUG RELOAD.antirez2020-04-091-4/+4
* RDB: clarify a condition in rdbLoadRio().antirez2020-04-091-0/+1
* RDB: load files faster avoiding useless free+realloc.antirez2020-04-091-1/+1
* DEBUG OBJECT should pass keyname to module when loadingGuy Benoish2020-01-301-1/+1
* Modules hooks: complete missing hooks for the initial set of hooksOran Agra2019-10-291-4/+7
* Implement module api for aux data in rdbOran Agra2019-07-221-0/+1
* RDB: try to make error handling code more readable.diskless-short-readantirez2019-07-171-2/+2
* prevent diskless replica from terminating on short readOran Agra2019-07-171-2/+2
* Add RedisModule_GetKeyNameFromIO().Yossi Gottlieb2019-03-151-2/+2
* fix redis-rdb-check to provide proper arguments to rdbLoadMillisecondTimeOran Agra2018-06-191-0/+2
* Don't expire keys while loading RDB from AOF preamble.antirez2018-05-291-1/+1
* Fix rdb save by allowing dumping of expire keys, so that whenWuYunlong2018-05-291-1/+1
* RDB version 9.antirez2018-03-161-1/+1
* RDB: Implement future-proof module AUX data loading.antirez2018-03-161-0/+1
* RDB: Ability to save LFU/LRU info.antirez2018-03-151-6/+8
* fix processing of large bulks (above 2GB)Oran Agra2017-12-291-1/+1
* Streams: assign value of 6 to OBJ_STREAM + some refactoring.antirez2017-12-011-2/+3
* Streams: 12 commits squashed into the initial Streams implementation.antirez2017-12-011-1/+2
* PSYNC2: Fix the way replication info is saved/loaded from RDB.antirez2017-09-191-0/+1
* RDB modules values serialization format version 2.antirez2017-06-271-1/+11
* PSYNC2: different improvements to Redis replication.antirez2016-11-091-5/+5
* Modules: API to save/load single precision floating point numbers.antirez2016-10-031-0/+2
* RDB AOF preamble: WIP 4 (Mixed RDB/AOF loading).antirez2016-08-111-0/+1
* RDB AOF preamble: WIP 1.antirez2016-08-091-0/+3
* Modules: support for modules native data types.antirez2016-06-031-1/+14
* RDB v8: fix rdbLoadLen() return value.antirez2016-06-011-1/+1
* RDB v8: new ZSET storage format with binary doubles.antirez2016-06-011-1/+2
* RDB v8: ability to save uint64_t lengths.antirez2016-06-011-9/+11
* RDMF: More consistent define names.antirez2015-07-271-30/+30
* RDMF (Redis/Disque merge friendlyness) refactoring WIP 1.antirez2015-07-261-1/+1
* Improve RDB type correctnessMatt Stancliff2015-01-191-3/+2
* RDB AUX fields support.antirez2015-01-081-0/+1
* New RDB v7 opcode: RESIZEDB.antirez2015-01-081-0/+1
* Convert quicklist RDB to store ziplist nodesMatt Stancliff2015-01-021-2/+5
* Diskless replication: RDB -> slaves transfer draft implementation.antirez2014-10-141-0/+1
* Fixed many typos.guiquanz2013-01-191-1/+1
* BSD license added to every C source and header file.antirez2012-11-081-0/+29
* No longer used macro rdbIsOpcode() removed.antirez2012-10-301-3/+0
* Fixed RESTORE hash failure (Issue #532)Alex Mitrofanov2012-06-021-1/+1
* Add a 24bit integer to ziplists to save one byte for ints that canGrisha Trubetskoy2012-04-241-1/+1
* RDB files now embed a crc64 checksum. Version of RDB bumped to 5.antirez2012-04-091-1/+1
* Write RDB magic using a REDIS_RDB_VERSION define that is defined inside rdb.hantirez2012-03-311-0/+4
* Encode small hashes with a ziplistPieter Noordhuis2012-01-021-0/+1
* Fixed a few typosantirez2011-11-091-1/+1
* Initial support for key expire times with millisecond resolution. RDB version...antirez2011-11-091-1/+2
* Move rdbLoad* to top; update commentsPieter Noordhuis2011-05-131-6/+35
* Make RDB types/opcodes explicit; load/save object typePieter Noordhuis2011-05-131-0/+27
* Abstract file/buffer I/O to support in-memory serializationPieter Noordhuis2011-05-131-0/+26