mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-10 18:05:44 +02:00
fix(server): Optimize StoredCmd (#1053)
Opmitize StoredCmd to allow inline storage
This commit is contained in:
parent
0ff22c6078
commit
015ed622c5
6 changed files with 98 additions and 52 deletions
|
@ -236,7 +236,7 @@ void Transaction::InitByKeys(KeyIndex key_index) {
|
|||
auto args = full_args_;
|
||||
|
||||
if (key_index.start == args.size()) { // eval with 0 keys.
|
||||
CHECK(absl::StartsWith(cid_->name(), "EVAL"));
|
||||
CHECK(absl::StartsWith(cid_->name(), "EVAL")) << cid_->name();
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue