docs(server): readability cleanup (#304)

* docs: fix Daniel Lemire's name

Signed-off-by: Ryan Russell <git@ryanrussell.org>

* refactor(server): readability cleanup

Signed-off-by: Ryan Russell <git@ryanrussell.org>

* docs: actually fix the name attribution

Signed-off-by: Ryan Russell <git@ryanrussell.org>

Signed-off-by: Ryan Russell <git@ryanrussell.org>
This commit is contained in:
Ryan Russell 2022-09-17 07:44:35 -05:00 committed by GitHub
parent 7cc761134b
commit b81634c25f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 11 additions and 11 deletions

View file

@ -152,7 +152,7 @@ inline void FreeObjStream(void* ptr) {
freeStream((stream*)ptr);
}
// Deniel's Lemire function validate_ascii_fast() - under Apache/MIT license.
// Daniel Lemire's function validate_ascii_fast() - under Apache/MIT license.
// See https://github.com/lemire/fastvalidate-utf-8/
// The function returns true (1) if all chars passed in src are
// 7-bit values (0x00..0x7F). Otherwise, it returns false (0).

View file

@ -56,7 +56,7 @@ void ConnectionContext::ChangeSubscription(bool to_add, bool to_reply, CmdArgLis
unsigned prev = shard_idx[0];
shard_idx[0] = 0;
// compute cumulitive sum, or in other words a beginning index in channels for each shard.
// compute cumulative sum, or in other words a beginning index in channels for each shard.
for (size_t i = 1; i < shard_idx.size(); ++i) {
unsigned cur = shard_idx[i];
shard_idx[i] = shard_idx[i - 1] + prev;

View file

@ -180,7 +180,7 @@ TEST_F(GenericFamilyTest, Stick) {
ASSERT_THAT(Run({"stick", "b", "d"}), IntArg(1));
ASSERT_THAT(Run({"stick", "c", "d"}), IntArg(0));
// check stickyness presists during writes
// check stickyness persists during writes
Run({"set", "a", "new"});
ASSERT_THAT(Run({"stick", "a"}), IntArg(0));
Run({"append", "a", "-value"});
@ -190,7 +190,7 @@ TEST_F(GenericFamilyTest, Stick) {
Run({"rename", "a", "k"});
ASSERT_THAT(Run({"stick", "k"}), IntArg(0));
// check rename perists stickyness on multiple shards
// check rename persists stickyness on multiple shards
Run({"del", "b"});
string b_val(32, 'b');
string x_val(32, 'x');

View file

@ -71,7 +71,7 @@ std::error_code JournalShard::Open(const std::string_view dir, unsigned index) {
// For file integrity guidelines see:
// https://lwn.net/Articles/457667/
// https://www.evanjones.ca/durability-filesystem.html
// NOTE: O_DSYNC is omited.
// NOTE: O_DSYNC is omitted.
constexpr auto kJournalFlags = O_CLOEXEC | O_CREAT | O_TRUNC | O_RDWR;
io::Result<std::unique_ptr<uring::LinuxFile>> res =
uring::OpenLinux(shard_path_, kJournalFlags, 0666);

View file

@ -271,7 +271,7 @@ OpResult<vector<OptBool>> OpToggle(const OpArgs& op_args, string_view key, strin
json j = result.value();
error_code ec = JsonReplace(j, path, cb);
if (ec) {
VLOG(1) << "Failed to evaulate expression on json with error: " << ec.message();
VLOG(1) << "Failed to evaluate expression on json with error: " << ec.message();
return OpStatus::SYNTAX_ERR;
}
@ -314,7 +314,7 @@ OpResult<string> OpDoubleArithmetic(const OpArgs& op_args, string_view key, stri
json j = result.value();
error_code ec = JsonReplace(j, path, cb);
if (ec) {
VLOG(1) << "Failed to evaulate expression on json with error: " << ec.message();
VLOG(1) << "Failed to evaluate expression on json with error: " << ec.message();
return OpStatus::SYNTAX_ERR;
}

View file

@ -245,7 +245,7 @@ TEST_F(ListFamilyTest, BLPopSerialize) {
// Either this lpush has run first or the one below.
// In any case it must be that between 2 invocations of lpush (wrapped in multi)
// blpop will be triggerred and it will empty the list again. Hence, in any case
// blpop will be triggered and it will empty the list again. Hence, in any case
// lpush kKey1 here and below should return 1.
ASSERT_THAT(resp, ArrLen(11));*/
cl1 = GetDebugInfo("IO1").clock;

View file

@ -10,7 +10,7 @@
// This is an internal struct in mimalloc.
// To declare it, we must include mimalloc-types.h which is an internal header in the lib.
// Being such it does not interract well with some other c++ headers, therefore we
// Being such it does not interact well with some other c++ headers, therefore we
// use a clean cc file to extract data from this record.
extern "C" mi_stats_t _mi_stats_main;

View file

@ -648,7 +648,7 @@ error_code RdbSerializer::SaveString(string_view val) {
size_t comprlen, outlen = len;
tmp_buf_.resize(outlen + 1);
// Due to stack constrainsts im fibers we can not allow large arrays on stack.
// Due to stack constraints im fibers we can not allow large arrays on stack.
// Therefore I am lazily allocating it on heap. It's not fixed in quicklist.
if (!lzf_) {
lzf_.reset(new LZF_HSLOT[1 << HLOG]);

View file

@ -241,7 +241,7 @@ void Replica::ReplicateFb() {
ec = InitiatePSync(); // redis -> df
// There is a data race condition in Redis-master code, where "ACK 0" handler may be
// triggerred
// triggered
// before Redis is ready to transition to the streaming state and it silenty ignores "ACK
// 0". We reduce the chance it happens with this delay.
this_fiber::sleep_for(50ms);