Skip to content

Commit

Permalink
Merge pull request #138 from eik3/master
Browse files Browse the repository at this point in the history
Typos
  • Loading branch information
pietern committed Jul 4, 2012
2 parents 847d75f + 64b8269 commit c500f96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion commands/incr.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This operation is limited to 64 bit signed integers.

**Note**: this is a string operation because Redis does not have a dedicated
integer type.
The the string stored at the key is interpreted as a base-10 **64 bit signed
The string stored at the key is interpreted as a base-10 **64 bit signed
integer** to execute the operation.

Redis stores integers in their integer representation, so for string values
Expand Down
2 changes: 1 addition & 1 deletion topics/latency.md
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ file you can use the strace command under Linux:
The above command will show all the fdatasync(2) system calls performed by
Redis in the main thread. With the above command you'll not see the
fdatasync system calls performed by the background thread when the
the appendfsync config option is set to **everysec**. In order to do so
appendfsync config option is set to **everysec**. In order to do so
just add the -f switch to strace.

If you wish you can also see both fdatasync and write system calls with the
Expand Down
2 changes: 1 addition & 1 deletion topics/persistence.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ Interactions between AOF and RDB persistence

Redis >= 2.4 makes sure to avoid triggering an AOF rewrite when an RDB
snapshotting operation is already in progress, or allowing a BGSAVE while the
the AOF rewrite is in progress. This prevents two Redis background processes
AOF rewrite is in progress. This prevents two Redis background processes
from doing heavy disk I/O at the same time.

When snapshotting is in progress and the user explicitly requests a log
Expand Down

0 comments on commit c500f96

Please sign in to comment.