mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-11 10:25:47 +02:00
chore: update helio together with new mimalloc version (#3040)
Signed-off-by: Roman Gershman <roman@dragonflydb.io>
This commit is contained in:
parent
8721ca7fca
commit
5bf7e3b146
21 changed files with 45 additions and 45 deletions
|
@ -12,13 +12,13 @@
|
|||
|
||||
#include <mimalloc.h>
|
||||
|
||||
#include "base/io_buf.h"
|
||||
#include "base/logging.h"
|
||||
#include "core/allocation_tracker.h"
|
||||
#include "facade/cmd_arg_parser.h"
|
||||
#include "facade/dragonfly_connection.h"
|
||||
#include "facade/dragonfly_listener.h"
|
||||
#include "facade/error.h"
|
||||
#include "io/io_buf.h"
|
||||
#include "server/engine_shard_set.h"
|
||||
#include "server/main_service.h"
|
||||
#include "server/server_family.h"
|
||||
|
@ -172,11 +172,11 @@ struct ConnectionMemoryUsage {
|
|||
size_t connection_count = 0;
|
||||
size_t connection_size = 0;
|
||||
size_t pipelined_bytes = 0;
|
||||
base::IoBuf::MemoryUsage connections_memory;
|
||||
io::IoBuf::MemoryUsage connections_memory;
|
||||
|
||||
size_t replication_connection_count = 0;
|
||||
size_t replication_connection_size = 0;
|
||||
base::IoBuf::MemoryUsage replication_memory;
|
||||
io::IoBuf::MemoryUsage replication_memory;
|
||||
};
|
||||
|
||||
ConnectionMemoryUsage GetConnectionMemoryUsage(ServerFamily* server) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue