summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | fix comment "b>a" to "a > b"andyli2016-06-101-1/+1
| | | | |
* | | | | Fixed typo in Sentinel compareSlavesForPromotion() comment.antirez2016-06-101-1/+1
| | | | |
* | | | | Merge branch 'unstable' of github.com:/antirez/redis into unstableantirez2016-06-102-0/+2
|\ \ \ \ \ | |/ / / /
| * | | | Include 'fd_set' type namejspraul2016-06-071-0/+1
| | | | | | | | | | | | | | | Fix an MSYS2-build-breaking error: unknown type name ‘fd_set’
| * | | | Remove gcc warning when redismodule.h is included by a multi-fileYossi Gottlieb2016-06-071-0/+1
| |/ / / | | | | | | | | | | | | module.
* | | | Improve timer callback creation comment.antirez2016-06-081-2/+3
|/ / /
* | | modules API.md updated.antirez2016-06-041-10/+232
| | |
* | | Modules: native types doc, 70% done.antirez2016-06-041-0/+305
| | |
* | | Modules: pool allocator doc.antirez2016-06-031-1/+53
| | |
* | | Modules: top comments in helloworld.c and hellotype.c.antirez2016-06-032-0/+74
| | |
* | | Modules: support for modules native data types.antirez2016-06-0311-35/+991
| | |
* | | RDB v8: fix rdbLoadLen() return value.antirez2016-06-013-36/+61
| | |
* | | RDB v8: new ZSET storage format with binary doubles.antirez2016-06-012-5/+27
| | |
* | | RDB v8: ability to save uint64_t lengths.antirez2016-06-013-44/+34
| | |
* | | Avoid undefined behavior in BITFIELD implementation.antirez2016-05-311-8/+15
| | | | | | | | | | | | | | | | | | | | | | | | Probably there is no compiler that will actaully break the code or raise a signal for unsigned -> signed overflowing conversion, still it was apparently possible to write it in a more correct way. All tests passing.
* | | Allow SPOP from Lua scriptsItamar Haber2016-05-281-1/+1
|/ / | | | | The existing `R` flag appears to be sufficient and there's no apparent reason why the command should be blocked.
* | Remove debug printingJan-Erik Rediger2016-05-211-3/+0
|/
* Fix modules compilation when libc malloc is used.antirez2016-05-181-2/+2
| | | | | | Compiling Redis worked as a side effect of jemalloc target specifying -ldl as needed linker options, otherwise it is not provided during linking and dlopen() API will remain unresolved symbols.
* Merge pull request #3222 from oranagra/more_minir_fixesSalvatore Sanfilippo2016-05-186-16/+19
|\ | | | | minor fixes - mainly signalModifiedKey, and GEORADIUS
| * minor fixes - mainly signalModifiedKey, and GEORADIUSoranagra2016-05-096-16/+19
| |
* | Modules: RM_HashSet() SDS ownership business clarified in comments.antirez2016-05-181-5/+5
| | | | | | | | Related to #3239.
* | Merge pull request #3239 from dvirsky/fix_hashset_crashSalvatore Sanfilippo2016-05-181-4/+7
|\ \ | | | | | | fixed bad transfer of ownership in HashSet causing a potential crash
| * | fixed bad transfer of ownership in HashSet causing a potential crashDvir Volk2016-05-171-4/+7
| | |
* | | Code to access object string bytes repeated 3x refactored into 1 function.antirez2016-05-181-35/+39
| | |
* | | Clarify that the LOG_STR_SIZE includes null term.antirez2016-05-181-1/+1
| | |
* | | Merge pull request #3221 from oranagra/bitfield_fixSalvatore Sanfilippo2016-05-181-3/+15
|\ \ \ | | | | | | | | fix crash in BITFIELD GET when key is integer encoded
| * | | fix crash in BITFIELD GET when key is integer encodedoranagra2016-05-101-3/+15
| | |/ | |/|
* | | reduce struct padding by reordering membersoranagra2016-05-161-1/+1
| |/ |/|
* | Modules: initial pool allocator and a LEFTPAD usage example.antirez2016-05-143-4/+147
| |
* | Modules: doc layout improved.antirez2016-05-104-575/+1475
| |
* | Modules doc: mention the functions not yet documented.antirez2016-05-101-8/+25
| |
* | RM_ZsetRangeNext()/Prev() typo in define name leading to crash fixed.antirez2016-05-101-2/+2
| |
* | Modules: commandFlagsFromString() top comment back to 80 cols max.antirez2016-05-101-24/+29
| |
* | Trailing spaces removed from moduleCreateArgvFromUserFormat().antirez2016-05-101-4/+4
| |
* | Modules: RM_GetClientId() implemented.antirez2016-05-102-0/+19
| |
* | fixed crash when calling CreateStringFromCallReply on array elementsDvir Volk2016-05-101-0/+1
| |
* | Avoids reallocating and double String on truncateItamar Haber2016-05-101-18/+17
| |
* | fixed comment formatting in RM_CreateCommandDvir Volk2016-05-101-13/+13
| |
* | vector of strings is implemented nowRamon Snir2016-05-101-1/+1
| |
* | another small comment fixDvir Volk2016-05-101-1/+2
| |
* | fixed commentDvir Volk2016-05-101-1/+3
| |
* | second attempt at vector formttingDvir Volk2016-05-101-1/+12
| |
* | Modules: add ZADD_INCR flag to zset increment API.antirez2016-05-101-0/+1
| |
* | typo: %s/Emtpy/Empty/gItamar Haber2016-05-101-5/+5
| |
* | Modules: command <-> core interface modified to get flags & keys.antirez2016-05-107-40/+177
| |
* | tiny typo in Redis Modules API documentationRamon Snir2016-05-101-1/+1
| |
* | fixed return value of HashGet (and a slight error in the documentation)Dvir Volk2016-05-101-2/+2
| |
* | Modules: REDISMODULE_POSTPONED_ARRAY_LEN doc.antirez2016-05-101-0/+45
| |
* | Modules: Hash API defines made more uniform.antirez2016-05-103-42/+38
| |
* | Modules: Hash type API WIP #2.antirez2016-05-103-4/+60
| |