public async Task <ActionResult <int> > AddCostAttribute4()
        {
            const int amount = 200000;

            CalculatedElementData[] calculatedElementDatas = TestClass.FillElementList(amount).ToArray();
            Log.Information($"Add costattribute to list, begin");

            await _redisListService.AddToList("list_key", calculatedElementDatas);

            Log.Information($"Add user collection to list, end");
            return(Ok());
        }