summaryrefslogtreecommitdiff
path: root/src/t_string.c
Commit message (Expand)AuthorAgeFilesLines
* Avoid assertion when MSETNX is used with the same key twice (CVE-2023-28425) ...Oran Agra2023-03-201-3/+1
* Avoid integer overflows in SETRANGE and SORT (CVE-2022-35977) (#11720)Oran Agra2023-01-161-6/+11
* Optimize the performance of msetnx command by call lookupkey only once (#11594)judeng2023-01-031-1/+3
* Add a special notification unlink available only for modules (#9406)Huang Zhw2022-11-301-2/+2
* Freeze time sampling during command execution, and scripts (#10300)Binbin2022-10-091-1/+1
* Optimize setGenericCommand(): no need to remove the expiration entry when 'ex...Mingyi Kang2022-09-071-1/+2
* Cleanup in GETDEL: Strings are never freed lazily (#11175)Brad Dunbar2022-08-241-6/+3
* fix typo in "lcsCommand" doc comment (#10622)Lu JJ2022-04-241-1/+1
* Fixes around clients that must be obeyed. Replica report disk errors in PING....Oran Agra2022-04-201-1/+1
* sub-command support for ACL CAT and COMMAND LIST. redisCommand always stores ...Binbin2022-01-231-4/+3
* Prevent LCS from allocating temp memory over proto-max-bulk-len (#9817)Oran Agra2021-11-211-2/+7
* Obliterate STRALGO! add LCS (which only works on keys) (#9799)guybe72021-11-181-66/+23
* fix: lookupKey on SETNX and SETXX only once (#9640)perryitay2021-11-031-5/+13
* Treat subcommands as commands (#9504)guybe72021-10-201-3/+12
* decrby LLONG_MIN caused nagation overflow. (#9577)yoav-steinberg2021-10-031-0/+5
* Update incrDecrCommand to use addReplyLongLong (#9188)Madelyn Olson2021-07-031-3/+1
* msetnx reply error (#9061)fishsalter2021-06-131-1/+2
* Add support for combining NX and GET flags on SET command (#8906)Fabian Eichinger2021-06-071-7/+9
* Fix integer overflow in STRALGO LCS (CVE-2021-32625) (#9011)Oran Agra2021-06-011-1/+17
* Always replicate time-to-live(TTL) as absolute timestamps in milliseconds (#8...ny03122021-05-301-59/+62
* Fix integer overflow in STRALGO LCS (CVE-2021-29477)Oran Agra2021-05-031-1/+1
* Fixes some typos (#8874)Andy Pan2021-04-271-1/+1
* Adds `LEN` to `STRALGO`'s comment (#8626)Itamar Haber2021-03-101-1/+1
* Improve overflow check of expire time (#8519)sundb2021-02-221-2/+2
* EXPIRE, EXPIREAT, SETEX, GETEX: Return error when expire time overflows (#8287)Gnanesh2021-02-211-22/+29
* Moved most static strings into the shared structure (#8411)Madelyn Olson2021-02-091-4/+2
* Fix typo and some out of date comments (#8449)Huang Zw2021-02-081-1/+1
* GETEX, GETDEL and SET PXAT/EXAT (#8327)Raghav Muddur2021-01-271-77/+263
* Flow through the error handling path for most errors (#8226)Madelyn Olson2020-12-231-3/+3
* Getset fix (#8118)Madelyn Olson2020-12-011-1/+1
* Propagate GETSET and SET-GET as SET (#7957)Oran Agra2020-11-031-1/+24
* fix new build warning about getGenericCommand (#7882)Oran Agra2020-10-041-0/+3
* Add GET parameter to SET command (#7852)Nykolas Laurentino de Lima2020-10-021-5/+18
* Squash merging 125 typo/grammar/comment/doc PRs (#7773)Oran Agra2020-09-101-1/+1
* Replace usage of wrongtypeerr with helper (#7633)Madelyn Olson2020-08-111-7/+6
* using proto-max-bulk-len in checkStringLength for SETRANGE and APPENDzhaozhao.zz2020-08-111-2/+2
* Fix LCS object type checking. Related to #7379.antirez2020-06-121-10/+17
* fix memory leakhwware2020-06-111-12/+11
* fix server crash in STRALGO commandhwware2020-06-081-0/+7
* using moreargs variablehwware2020-05-211-2/+2
* fix server crash for STRALGO commandhwware2020-05-211-2/+2
* LCS -> STRALGO LCS.antirez2020-04-241-5/+18
* Tracking: NOLOOP internals implementation.antirez2020-04-211-7/+7
* Merge branch 'lcs' into unstableantirez2020-04-061-0/+204
|\
| * LCS: allow KEYS / STRINGS to be anywhere.antirez2020-04-061-6/+0
| * LCS: get rid of STOREIDX option. Fix get keys helper.antirez2020-04-061-14/+13
| * LCS: fix stale comment.lcsantirez2020-04-021-1/+1
| * LCS: output LCS len as well in IDX mode.antirez2020-04-021-1/+6
| * LCS: MINMATCHLEN and WITHMATCHLEN options.antirez2020-04-021-11/+24
| * LCS: 7x speedup by accessing the array with better locality.antirez2020-04-011-1/+1