public async Task Can_Store_with_Prefix()
        {
            var expected = new CacheRecord()
            {
                Id = "123"
            };
            await RedisTyped.StoreAsync(expected);

            var current = await RedisAsync.GetAsync <CacheRecord>("RedisTypedClientTests:urn:cacherecord:123");

            Assert.AreEqual(expected.Id, current.Id);
        }
        public async Task Can_Store_and_GetById_ModelWithIdAndName()
        {
            const int modelId = 1;
            var       to      = Factory.CreateInstance(modelId);
            await redis.StoreAsync(to);

            var from = await redis.GetByIdAsync(to.GetId().ToString());

            Factory.AssertIsEqual(to, from);
        }