You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For most use cases the majority of the request will be read-only (i.e. GET), having to go through the db::actor will likely (TODO: confirm this) become a bottleneck. evmap could help with improving performance here, removing the bottleneck on the db::actor.
Steps:
Get a baseline performance number of read-only requests. Could be done with YCSB workload C.
Update to use evmap.
Get a new number to compare to step 1.
The text was updated successfully, but these errors were encountered:
For most use cases the majority of the request will be read-only (i.e.
GET
), having to go through thedb::actor
will likely (TODO: confirm this) become a bottleneck. evmap could help with improving performance here, removing the bottleneck on thedb::actor
.Steps:
The text was updated successfully, but these errors were encountered: