Home
last modified time | relevance | path

Searched refs:changes (Results 1 – 14 of 14) sorted by relevance

/redis-3.2.3/src/
H A Dconfig.c143 void appendServerSaveParams(time_t seconds, int changes) { in appendServerSaveParams() argument
146 server.saveparams[server.saveparamslen].changes = changes; in appendServerSaveParams()
233 int changes = atoi(argv[2]); in loadServerConfigFromString() local
234 if (seconds < 1 || changes < 0) { in loadServerConfigFromString()
237 appendServerSaveParams(seconds,changes); in loadServerConfigFromString()
808 int changes; local
811 changes = strtoll(v[j+1],NULL,10);
812 appendServerSaveParams(seconds, changes);
1180 server.saveparams[j].changes);
1542 (long) server.saveparams[j].seconds, server.saveparams[j].changes);
H A Dbitops.c906 int j, numops = 0, changes = 0; in bitfieldCommand() local
1070 changes++; in bitfieldCommand()
1107 if (changes) { in bitfieldCommand()
1110 server.dirty += changes; in bitfieldCommand()
H A Dsentinel.c3296 int j, changes = 0; in sentinelSetCommand() local
3315 changes++; in sentinelSetCommand()
3321 changes++; in sentinelSetCommand()
3327 changes++; in sentinelSetCommand()
3338 changes++; in sentinelSetCommand()
3350 changes++; in sentinelSetCommand()
3355 changes++; in sentinelSetCommand()
3361 changes++; in sentinelSetCommand()
3365 if (changes) sentinelFlushConfig(); in sentinelSetCommand()
3371 if (changes) sentinelFlushConfig(); in sentinelSetCommand()
[all …]
H A Dserver.h620 int changes; member
1393 void appendServerSaveParams(time_t seconds, int changes);
H A Dserver.c1221 if (server.dirty >= sp->changes && in serverCron()
1228 sp->changes, (int)sp->seconds); in serverCron()
/redis-3.2.3/deps/jemalloc/
H A DREADME18 The ChangeLog file contains a brief summary of changes for each release.
H A DChangeLog72 allocation events against concurrent prof_active changes.
195 Incompatible changes:
325 - Don't junk-fill reallocations unless usable size changes. This fixes a
423 Incompatible changes:
445 Incompatible changes:
492 Incompatible changes:
699 Incompatible changes:
H A DINSTALL57 "prefix_", API changes like the following occur:
381 If you intend to make non-trivial changes to jemalloc, use the 'autogen.sh'
H A Dconfigure2446 …{ $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since …
2471 …{ $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the buil…
2472 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
/redis-3.2.3/deps/
H A DREADME.md8 * **lua** is Lua 5.1 with minor changes for security and additional libraries.
26 This is never upgraded since it's part of the Redis project. If there are changes to merge from Ard…
/redis-3.2.3/deps/lua/
H A DREADME4 See HISTORY for a summary of changes since the last released version.
/redis-3.2.3/
H A D00-RELEASENOTES69 non trivial changes to the replication code were operated, however it was
200 In Redis RDB check: minor output message changes.
763 There are a few changes between the latest release candidate of Redis 3.2
1642 and fixed. Note that while 3.2 looks solid already, it contains many changes
1645 General changes:
1702 Redis Cluster changes:
1704 All the Redis Cluster changes in 3.2 were backported to 3.0, so there is
1715 Redis Sentinel changes:
1727 non-backward compatible changes introduced in the 3.2 release:
1738 Credits: For each release, a list of changes with the relative author is
/redis-3.2.3/deps/jemalloc/include/jemalloc/internal/
H A Djemalloc_internal_defs.h.in174 * automatically coalesce, and they fragment when changes are made to subranges.
/redis-3.2.3/tests/unit/
H A Dbitops.tcl313 test {BITPOS bit=0 changes behavior if end is given} {