summaryrefslogtreecommitdiff
path: root/src/redis.c
Commit message (Expand)AuthorAgeFilesLines
* User-defined switch point between sparse-dense HLL encodings.antirez2014-04-151-0/+1
* Mark PFDEBUG as write command in the commands table.antirez2014-04-141-1/+1
* PFDEBUG added, PFGETREG removed.antirez2014-04-131-1/+1
* Add casting to match printf format.antirez2014-04-071-5/+9
* ZRANGEBYLEX and ZREVRANGEBYLEX implementation.antirez2014-04-051-0/+8
* PFGETREG added for testing purposes.antirez2014-04-031-1/+2
* HyperLogLog API prefix modified from "P" to "PF".antirez2014-03-311-4/+4
* HyperLogLog: make API use the P prefix in honor of Philippe Flajolet.antirez2014-03-311-4/+4
* HLLMERGE implemented.antirez2014-03-311-1/+2
* HLLCOUNT implemented.antirez2014-03-281-1/+2
* HLLADD implemented.antirez2014-03-281-0/+1
* HLLSELFTEST command implemented.antirez2014-03-281-1/+2
* Fix off by one bug in freeMemoryIfNeeded() eviction pool.antirez2014-03-251-1/+1
* adjustOpenFilesLimit() refactoring.antirez2014-03-251-15/+17
* Merge pull request #1630 from mattsta/fix-infinite-loop-ulimitSalvatore Sanfilippo2014-03-251-11/+41
|\
| * Fix potentially incorrect errno usageMatt Stancliff2014-03-241-1/+2
| * Add REDIS_MIN_RESERVED_FDS define for open fdsMatt Stancliff2014-03-241-5/+5
| * Fix infinite loop on startup if ulimit too lowMatt Stancliff2014-03-241-0/+11
| * Improve error handling around setting ulimitsMatt Stancliff2014-03-241-4/+22
| * Replace magic 32 with REDIS_EVENTLOOP_FDSET_INCRMatt Stancliff2014-03-241-7/+7
* | Merge pull request #1627 from badboy/lru-fixSalvatore Sanfilippo2014-03-241-3/+3
|\ \ | |/ |/|
| * Fixed a few typos.Jan-Erik Rediger2014-03-201-3/+3
* | Sample and cache RSS in serverCron().antirez2014-03-241-2/+6
* | Cache uname() output across INFO calls.antirez2014-03-241-2/+9
|/
* Use new dictGetRandomKeys() API to get samples for eviction.antirez2014-03-201-3/+23
* struct dictEntry -> dictEntry.antirez2014-03-201-3/+3
* LRU eviction pool implementation.antirez2014-03-201-21/+131
* Obtain LRU clock in a resolution dependent way.antirez2014-03-201-14/+12
* Specify LRU resolution in milliseconds.antirez2014-03-201-2/+1
* Unify stats reset for CONFIG RESETSTAT / initServer().antirez2014-03-191-15/+23
* Cluster: flag the transaction as dirty for the new redirections.antirez2014-03-131-0/+2
* Cluster: SORT get keys helper implemented.antirez2014-03-101-1/+1
* Cluster: evalGetKey() added for EVAL/EVALSHA.antirez2014-03-101-2/+2
* Cluster: getKeysFromCommand() API cleaned up.antirez2014-03-101-8/+8
* Merge pull request #1555 from mattsta/cluster-port-error-outSalvatore Sanfilippo2014-03-101-1/+1
|\
| * Fix "can't bind to address" error reporting.Matt Stancliff2014-02-191-1/+1
* | Redis Cluster: support for multi-key operations.antirez2014-03-071-4/+14
* | Cluster: invalidate current transaction on redirections.antirez2014-03-031-0/+1
* | Document why we update peak memory in INFO.antirez2014-03-031-2/+5
* | Force INFO used_memory_peak to match peak memoryMatt Stancliff2014-02-281-2/+7
* | Initial implementation of BITPOS.antirez2014-02-271-0/+1
* | Add cluster or sentinel to proc titleMatt Stancliff2014-02-201-2/+7
|/
* Get absoulte config file path before processig 'dir'.antirez2014-02-171-1/+1
* Update cached time in rdbLoad() callback.antirez2014-02-131-8/+12
* AOF write error: retry with a frequency of 1 hz.antirez2014-02-121-6/+11
* AOF: don't abort on write errors unless fsync is 'always'.antirez2014-02-121-9/+24
* Don't count time to feed MONITORs in SLOWLOG.antirez2014-02-071-2/+3
* Sentinel: allow SHUTDOWN command in Sentinel mode.antirez2014-02-071-1/+2
* CLIENT PAUSE and related API implemented.antirez2014-02-041-0/+4
* Allow CONFIG and SHUTDOWN while in stale-slave state.antirez2014-02-031-2/+2