summaryrefslogtreecommitdiff
path: root/src/sds.c
Commit message (Expand)AuthorAgeFilesLines
* sds.c: new function sdsjoin() to join strings.antirez2013-07-041-0/+13
* sds.c: sdssplitargs_free() removed as it was a duplicate.antirez2013-03-061-11/+5
* sdssplitargs(): on error set *argc to 0.antirez2013-03-061-0/+1
* sdssplitargs(): now returns NULL only on error.antirez2013-03-061-0/+8
* Fixed many typos.guiquanz2013-01-191-2/+2
* BSD license added to every C source and header file.antirez2012-11-081-1/+1
* Added consts keyword where possibleErik Dubbelboer2012-03-301-11/+11
* sds.c: sdsAllocSize() function added.antirez2012-03-141-0/+6
* sds.c new function sdsRemoveFreeSpace().antirez2012-03-141-0/+12
* Obsolete SDS_ABORT_ON_OOM removed from sds.cantirez2012-01-161-52/+3
* sds.c no longe pre-allocate more than 1MB of free space ahead. This fixes iss...antirez2012-01-161-1/+5
* Added sdscatsds() to sds.c/hantirez2011-11-211-0/+4
* sdsMakeRoomFor() exposed as public API. sdsIncrLen() added. Both the changes ...antirez2011-11-021-1/+53
* added a comment to sdsMakeRoomFor() to make it clear what the function actual...antirez2011-11-021-0/+6
* sds.c single quotes supportantirez2011-10-281-2/+22
* Re-use AOF buffer when it is small enoughPieter Noordhuis2011-09-131-0/+7
* Make sure error and status replies emitted by Lua scripts can never have more...antirez2011-05-251-0/+23
* Check seplen and len before malloc'ing "tokens"Pieter Noordhuis2011-05-051-5/+7
* Inline sdslen and sdsavail (thanks to @bitbckt)Pieter Noordhuis2011-05-051-11/+1
* initial cluster config load codeantirez2011-04-071-0/+7
* DUMP implemented, RESTORE and MIGRATE fixed. Use zcalloc() instead of zmalloc...antirez2011-04-011-5/+7
* Fixed sdssplitargs() handling of hex-style escapes.antirez2011-03-221-1/+48
* sdscatrepr() fixed. Now newlines and other special chars are escaped correctlyantirez2011-03-201-5/+5
* Fixed a theoretical non exploitable security bug reported by @chrisrohlf. In ...antirez2011-01-271-1/+5
* Change function name to match what it doesPieter Noordhuis2010-12-101-3/+3
* Add generic function to grow an sds valuePieter Noordhuis2010-12-101-26/+19
* Add commands SETBIT/GETBITPieter Noordhuis2010-12-091-0/+26
* more tests for sds.cantirez2010-09-231-8/+79
* minimal C test framework + a first example sds.c testsantirez2010-09-231-4/+26
* Add sds function that can be called with va_listPieter Noordhuis2010-09-021-6/+13
* Fix parenthesis error on decrementing *argcPieter Noordhuis2010-08-261-1/+1
* Merge master and move argument splitting patch to sds.cPieter Noordhuis2010-08-251-0/+89
|\
| * redis cli argument splitting is general and is now moved into the sds.c libantirez2010-08-051-0/+77
|/
* redis.c split into many different C files.antirez2010-07-011-0/+384