Skip to content

Commit 3d610ee

Browse files
authored
feat(server): JSON family using JSON type (dragonflydb#561)
feat(server): json family using json type Signed-off-by: Boaz Sade <[email protected]> Signed-off-by: Boaz Sade <[email protected]>
1 parent dba4c6b commit 3d610ee

File tree

5 files changed

+459
-278
lines changed

5 files changed

+459
-278
lines changed

src/server/generic_family.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ void GenericFamily::Exists(CmdArgList args, ConnectionContext* cntx) {
665665
OpStatus status = transaction->ScheduleSingleHop(std::move(cb));
666666
CHECK_EQ(OpStatus::OK, status);
667667

668-
return (*cntx)->SendLong(result.load(memory_order_release));
668+
return (*cntx)->SendLong(result.load(memory_order_acquire));
669669
}
670670

671671
void GenericFamily::Persist(CmdArgList args, ConnectionContext* cntx) {

0 commit comments

Comments
 (0)