summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* HyperLogLog API prefix modified from "P" to "PF".antirez2014-03-315-19/+19
* Makefile.dep updated with hyperloglog.o deps.antirez2014-03-311-3/+7
* HyperLogLog: make API use the P prefix in honor of Philippe Flajolet.antirez2014-03-315-19/+19
* HLLMERGE fixed by adding a... missing loop!antirez2014-03-311-5/+7
* hll-gnuplot-graph.rb: added new filter "all".antirez2014-03-311-5/+14
* HyperLogLog apply bias correction using a polynomial.antirez2014-03-311-11/+18
* HLLMERGE implemented.antirez2014-03-313-1/+67
* HLLCOUNT is technically a write commandantirez2014-03-311-0/+6
* HLLADD: propagate write when only variable name is given.antirez2014-03-311-0/+1
* hll-gnuplot-graph.rb: Use |error| when filter is :maxantirez2014-03-311-0/+1
* Ignore txt files inside utils/hyperloglog.antirez2014-03-311-0/+1
* HyperLogLog: use LINEARCOUNTING up to 3m.antirez2014-03-311-3/+11
* hll-gnuplot-graph.rb added to plot HyperLogLog error graphs.antirez2014-03-311-0/+68
* HyperLogLog approximated cardinality caching.antirez2014-03-301-3/+51
* String value unsharing refactored into proper function.antirez2014-03-306-31/+44
* Use endian neutral hash function for HyperLogLog.antirez2014-03-301-14/+28
* HyperLogLog internal representation modified.antirez2014-03-291-57/+87
* Remove a few useless operations from hllCount() fast path.antirez2014-03-291-4/+4
* HLLCOUNT 3x faster taking fast path for default params.antirez2014-03-291-11/+47
* Use processor base types in HLL_(GET|SET)_REGISTER.antirez2014-03-291-8/+8
* HyperLogLog: use precomputed table for 2^(-M[i]).antirez2014-03-281-1/+14
* hll-err.rb: speedup using pipelining.antirez2014-03-281-10/+16
* hll-err.rb added to test error rate of Redis HyperLogLog.antirez2014-03-281-0/+21
* HyperLogLog algorithm fixed in two ways.antirez2014-03-281-3/+8
* HLLCOUNT implemented.antirez2014-03-283-2/+68
* HLLADD implemented.antirez2014-03-283-3/+93
* hllAdd() low level HyperLogLog "add" implemented.antirez2014-03-281-0/+45
* HyperLogLog: redefine constants using "P".antirez2014-03-281-2/+3
* HLL_SET_REGISTER fixed.antirez2014-03-281-13/+18
* Use REDIS_HLL_REGISTER_MAX when possible.antirez2014-03-281-1/+1
* HLL_(SET|GET)_REGISTER types fixed.antirez2014-03-281-7/+9
* HLLSELFTEST command implemented.antirez2014-03-284-8/+53
* HyperLogLog: initial sketch of registers access.antirez2014-03-281-0/+175
* Cluster: last_vote_epoch -> lastVoteEpoch.antirez2014-03-272-9/+9
* Cluster: save/restore vars that must persist after recovery.antirez2014-03-271-6/+36
* Cluster: handshake "already known" error logged to VERBOSE.antirez2014-03-261-1/+1
* Cluster: clusterHandleConfigEpochCollision() fixed.antirez2014-03-261-2/+6
* Cluster: better logging for clusterUpdateSlotsConfigWith().antirez2014-03-261-3/+13
* Cluster: CLUSTER SETSLOT implementation comment updated.antirez2014-03-251-3/+5
* Cluster: redis-trib cluster allocation more even across nodes.antirez2014-03-251-6/+10
* Cluster: configEpoch collisions resolution.antirez2014-03-251-0/+72
* Cluster: stay within 80 cols.antirez2014-03-251-26/+62
* Fix off by one bug in freeMemoryIfNeeded() eviction pool.antirez2014-03-251-1/+1
* Test: do not complain when "leaks" can't run because process died.antirez2014-03-251-0/+4
* adjustOpenFilesLimit() refactoring.antirez2014-03-251-15/+17
* Merge pull request #1630 from mattsta/fix-infinite-loop-ulimitSalvatore Sanfilippo2014-03-253-15/+46
|\
| * Fix potentially incorrect errno usageMatt Stancliff2014-03-241-1/+2
| * Add REDIS_MIN_RESERVED_FDS define for open fdsMatt Stancliff2014-03-242-7/+8
| * 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