summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix typos in documentationSaurabh Jha2016-06-072-16/+15
|
* 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
|
* Test: run GEO tests by default.antirez2016-05-311-0/+1
| | | | Thanks to @oranagra for noticing it was missing.
* Now that SPOP can be called by scripts use BLPOP on 's' flag test.antirez2016-05-311-1/+1
|
* 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.
* Merge pull request #3278 from itamarhaber/patch-8Salvatore Sanfilippo2016-05-301-1/+1
|\ | | | | Allow SPOP from Lua scripts
| * 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.
* | Geo: fix typo in geohashEstimateStepsByRadius().antirez2016-05-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | I'm the author of this line but I can't see a good reason for it to don't be a typo, a step of 26 should be valid with 52 bits per coordinate, moreover the line was: if (step > 26) step = 25; So a step of 26 was actually already used, except when one of 27 was computed (which is invalid) only then it was trimmed to 25 instead of 26. All tests passing after the change.
* | Merge branch 'unstable' of github.com:/antirez/redis into unstableantirez2016-05-302-5/+2
|\ \ | |/
| * Merge pull request #3249 from badboy/rcli-debug-printingSalvatore Sanfilippo2016-05-221-3/+0
| |\ | | | | | | Remove debug printing
| | * 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.
* | Fix GEORADIUS wrong output with radius > Earth radius.antirez2016-05-301-0/+2
|/ | | | Close #3266
* 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
| | |/ | |/|
* | | Test for BITFIELD regression #3221.antirez2016-05-181-0/+5
| | |
* | | Merge branch 'unstable' of github.com:/antirez/redis into unstableantirez2016-05-181-1/+1
|\ \ \
| * \ \ Merge pull request #3238 from oranagra/struct_fixSalvatore Sanfilippo2016-05-171-1/+1
| |\ \ \ | | |_|/ | |/| | reduce struct padding by reordering members
| | * | reduce struct padding by reordering membersoranagra2016-05-161-1/+1
| |/ /
* | | Actually use --with-lg-quantum=3 to build jemalloc.antirez2016-05-181-1/+1
|/ / | | | | | | | | | | | | | | This change is documented in deps/README.md but was lost in one way or the other, neutralizing the benefits of 24 bytes size classes (and others). Close #3208.
* | 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
| |