summaryrefslogtreecommitdiff
path: root/src/t_hash.c
Commit message (Expand)AuthorAgeFilesLines
* Module API for loading and saving long doubleOran Agra2019-11-031-1/+1
* RESP3: fix cases of NULL reported instead of empty aggregate.antirez2019-09-021-2/+2
* Increase string2ld's buffer size (and fix HINCRBYFLOAT)Guy Benoish2019-01-281-0/+4
* RESP3: fix HMGET bug introduced with RESP3 changes.antirez2019-01-091-1/+1
* RESP3: fix genericHgetallCommand() assert.antirez2019-01-091-0/+3
* RESP3: most null replies converted.antirez2019-01-091-5/+5
* RESP3: Use new API and types in t_hash.c.antirez2019-01-091-7/+9
* Merge pull request #3745 from guybe7/unstableSalvatore Sanfilippo2018-02-131-1/+1
|\
| * enlarged buffer given to ld2stringGuy Benoish2017-01-111-1/+1
* | t_hash.c: clarify calling two times the same function.antirez2017-11-281-2/+2
* | HMSET and MSET implementations unified. HSET now variadic.antirez2017-06-291-18/+14
|/
* Use const in Redis Module API where possible.Yossi Gottlieb2016-06-201-2/+2
* Fix HINCRBYFLOAT to work with long doubles.antirez2015-11-041-4/+4
* Hash new implementation memleaks fixed.antirez2015-10-011-11/+52
* Lazyfree: Hash converted to use plain SDS WIP 5.antirez2015-10-011-1/+1
* Lazyfree: Hash converted to use plain SDS WIP 4.antirez2015-10-011-33/+40
* Lazyfree: Hash converted to use plain SDS WIP 3.antirez2015-10-011-25/+16
* Lazyfree: Hash converted to use plain SDS WIP 2.antirez2015-10-011-5/+11
* Lazyfree: Hash converted to use plain SDS WIP 1.antirez2015-10-011-138/+120
* RDMF: More consistent define names.antirez2015-07-271-22/+22
* RDMF: REDIS_OK REDIS_ERR -> C_OK C_ERR.antirez2015-07-261-13/+13
* RDMF: redisAssert -> serverAssert.antirez2015-07-261-15/+15
* RDMF: OBJ_ macros for object related stuff.antirez2015-07-261-59/+59
* RDMF: use client instead of redisClient, like Disque.antirez2015-07-261-19/+19
* RDMF: redisLog -> serverLog.antirez2015-07-261-1/+1
* RDMF (Redis/Disque merge friendlyness) refactoring WIP 1.antirez2015-07-261-1/+1
* Hash: HSTRLEN crash fixed when getting len of int-encoded valueantirez2015-02-271-1/+1
* Hash: HSTRLEN (was HVSTRLEN) improved.antirez2015-02-271-10/+5
* Merge branch 'unstable' of github.com:/antirez/redis into unstableantirez2015-02-271-0/+14
|\
| * added a new hvstrlen commandJason Roth2015-02-211-0/+14
* | Hash: API to get value string len by field name.antirez2015-02-271-1/+23
|/
* Use exp format and more precision output for ZSCAN.antirez2014-12-021-1/+1
* SCAN code refactored to parse cursor first.antirez2013-11-051-1/+3
* Aesthetic fix (missing space) into HSCAN and ZSCAN implementations.antirez2013-10-281-1/+1
* HSCAN implemented.antirez2013-10-281-0/+8
* Introduction of a new string encoding: EMBSTRantirez2013-07-221-1/+1
* Removed useless newlines from hashTypeCurrentObject().antirez2013-02-151-3/+0
* Keyspace events: it is now possible to select subclasses of events.antirez2013-01-281-7/+9
* Keyspace events added for more commands.antirez2013-01-281-1/+9
* BSD license added to every C source and header file.antirez2012-11-081-0/+29
* Dump ziplist hex value on failed assertion.antirez2012-06-121-1/+5
* Replicate HINCRBYFLOAT as HSET.antirez2012-03-231-11/+14
* More vertical space saved.antirez2012-03-101-21/+4
* Minor code aesthetic change to use Redis code base style rule of saving verti...antirez2012-03-101-4/+1
* Merge conflicts resolved.antirez2012-03-091-196/+417
|\
| * Implements ziplistFindPieter Noordhuis2012-01-031-40/+28
| * Encode small hashes with a ziplistPieter Noordhuis2012-01-021-196/+429
* | Fixed undefined behavior in *INCR style functions overflow detection. Sorry c...antirez2012-02-211-2/+3
* | Now HINCRBY can detect overflows too. Fix for issue #330.antirez2012-02-161-1/+6
|/
* HINCRBYFLOAT implementedantirez2011-11-151-0/+27