make taggedcache size 1

This commit is contained in:
Valentin Balaschenko
2025-04-03 16:17:03 +01:00
parent f608e653ca
commit 476a0bd1c7

View File

@@ -255,9 +255,10 @@ public:
{
// Set partitions to the number of hardware threads if the parameter
// is either empty or set to 0.
partitions_ = partitions && *partitions
? *partitions
: std::thread::hardware_concurrency();
partitions_ = 1;
// partitions && *partitions
// ? *partitions
// : std::thread::hardware_concurrency();
map_.resize(partitions_);
XRPL_ASSERT(
partitions_,