summaryrefslogtreecommitdiff
path: root/src/sds.c
Commit message (Expand)AuthorAgeFilesLines
...
* fix typoFuGangqiang2015-04-191-1/+1
* sdsnative() removed: New rdb.c API can load native strings.antirez2015-01-081-11/+0
* Add sdsnative()Matt Stancliff2015-01-021-0/+11
* Allow all code tests to run using Redis argsMatt Stancliff2014-12-231-3/+12
* sdsformatip() removed.antirez2014-12-111-9/+0
* Add centralized IP/Peer formatting functionsMatt Stancliff2014-12-111-0/+9
* Merge branch 'unstable' of github.com:/antirez/redis into unstableantirez2014-12-101-1/+1
|\
| * Update sds.cBrochen2014-12-101-1/+1
* | sds.c: more tests for sdstrim().antirez2014-12-101-0/+12
|/
* sds.c: Correct two spelling mistakes in commentsSun He2014-11-031-2/+2
* sds.c/sdscatvprintf: set va_end to finish va_list cpySun He2014-11-021-1/+1
* sds.c: Correct some commentsSun He2014-11-021-4/+4
* Fix on-place -> in-placeTed Nyman2014-09-291-1/+1
* Remove surplus double quotesLynn2014-09-291-1/+1
* No longer useful assert removed from sdsIncrLen().antirez2014-08-251-1/+0
* Use unsigned integers in SDS header.antirez2014-08-131-2/+5
* va_copy must be matched by va_endPieter Noordhuis2014-08-121-0/+1
* No more trailing spaces in Redis source code.antirez2014-06-261-1/+1
* Silence different signs comparison warning in sds.c.antirez2014-06-231-1/+1
* Added new sdscatfmt() %u and %U format specifiers.antirez2014-04-281-4/+71
* sdscatfmt() added to SDS library.antirez2014-04-281-27/+165
* sdscatvprintf(): Try to use a static buffer.antirez2014-03-241-6/+18
* sdscatvprintf(): guess buflen using format length.antirez2014-03-241-1/+2
* comment mistake fixedcodeeply2013-12-121-1/+1
* Fixed grammar: before H the article is a, not an.antirez2013-12-051-1/+1
* sdsrange() does not need to return a value.antirez2013-07-241-3/+2
* Every function inside sds.c is now commented.antirez2013-07-231-7/+145
* 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