summaryrefslogtreecommitdiff
path: root/src/sds.c
Commit message (Expand)AuthorAgeFilesLines
* SDS: make sdscatfmt() faster by pre-allocating a bit.antirez2019-10-021-0/+4
* Trim SDS free space of retained module stringsGuy Benoish2019-02-121-0/+4
* fix comments fault discriptionhdmg2018-12-051-1/+1
* bugfix in sdsReqType creating 64bit sds headers on 32bit systemsOran Agra2018-07-151-1/+3
* Fix typoJack Drogon2018-07-031-1/+1
* Merge pull request #3828 from oranagra/sdsnewlen_prSalvatore Sanfilippo2018-02-271-1/+6
|\
| * add SDS_NOINIT option to sdsnewlen to avoid unnecessary memsets.oranagra2017-02-231-1/+6
* | fix processing of large bulks (above 2GB)Oran Agra2017-12-291-11/+12
* | SDS: improve sdsRemoveFreeSpace() to avoid useless data copy.antirez2017-11-031-5/+12
|/
* sds: don't check for impossible string size in 32 bit systems.antirez2016-09-011-0/+3
* minor fixes - mainly signalModifiedKey, and GEORADIUSoranagra2016-05-091-4/+4
* Lua debugger: use sds_malloc() to allocate eval cli array.antirez2015-11-171-0/+9
* SDS: Copyright updated further.antirez2015-07-251-0/+1
* SDS: changes to unify Redis SDS with antirez/sds repo.antirez2015-07-251-26/+25
* SDS: Copyright notice updated.antirez2015-07-251-2/+3
* SDS: sdsjoinsds() call ported from antirez/sds fork.antirez2015-07-251-0/+12
* SDS: avoid compiler warning in sdsIncrLen().antirez2015-07-241-0/+1
* SDS: use type 8 if we are likely to append to the string.sdsantirez2015-07-231-0/+11
* Fix SDS type 5 sdsIncrLen() bug and added test.antirez2015-07-201-15/+27
* SDS: New sds type 5 implemented.antirez2015-07-151-36/+36
* sds size classes - memory optimizationOran Agra2015-07-141-94/+195
* sdsfree x and yFuGangqiang2015-04-201-0/+3
* fix doc exampleFuGangqiang2015-04-201-1/+1
* 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