Esempio n. 1
0
        public async Task CacheEntities_Version_TestAsync(int?absoluteSecondsRelativeToNow, int?slidingSeconds)
        {
            CacheEntityDef entityDef = CacheEntityDefFactory.Get <Book>();

            entityDef.AbsoluteTimeRelativeToNow = absoluteSecondsRelativeToNow == null ? null : (TimeSpan?)TimeSpan.FromSeconds(absoluteSecondsRelativeToNow.Value);
            entityDef.SlidingTime = slidingSeconds == null ? null : (TimeSpan?)TimeSpan.FromSeconds(slidingSeconds.Value);

            IDatabase database = _redisConnection.GetDatabase(_databaseNumber);

            IList <Book> books = Mocker.MockMany();

            await AddToDatabaeAsync(books).ConfigureAwait(false);

            await _cache.RemoveEntitiesAsync <Book>("Id", books.Select(b => b.Id.ToString()), books.Select(b => b.Version)).ConfigureAwait(false);

            IEnumerable <bool> oks = await _cache.SetEntitiesAsync(books).ConfigureAwait(false);

            Assert.True(oks.All(b => b));

            IEnumerable <bool> oks1 = await _cache.SetEntitiesAsync(books).ConfigureAwait(false);

            Assert.True(oks1.All(b => !b));

            typeof(Book).GetProperty("Version") !.SetValue(books[0], books[0].Version + 1);

            IEnumerable <bool> oks2 = await _cache.SetEntitiesAsync(books).ConfigureAwait(false);

            Assert.True(oks2.ElementAt(0));

            Assert.True(oks2.Count(b => b) == 1);
        }
Esempio n. 2
0
 /// <summary>
 /// ThrowIfNotCacheEnabled
 /// </summary>
 /// <param name="entityDef"></param>
 /// <exception cref="CacheException"></exception>
 protected static void ThrowIfNotCacheEnabled(CacheEntityDef entityDef)
 {
     if (!entityDef.IsCacheable)
     {
         throw Exceptions.NotEnabledForEntity(type:entityDef.Name);
     }
 }
Esempio n. 3
0
 /// <exception cref="CacheException"></exception>
 protected static void ThrowIfNotADimensionKeyName(string dimensionKeyName, CacheEntityDef entityDef)
 {
     if (!entityDef.Dimensions.Any(p => p.Name == dimensionKeyName))
     {
         throw Exceptions.NoSuchDimensionKey(type:entityDef.Name, dimensionKeyName:dimensionKeyName);
     }
 }
Esempio n. 4
0
        public async Task CacheEntities_Abs_TestAsync(int?absoluteSecondsRelativeToNow, int?slidingSeconds)
        {
            CacheEntityDef entityDef = CacheEntityDefFactory.Get <Book>();

            entityDef.AbsoluteTimeRelativeToNow = absoluteSecondsRelativeToNow == null ? null : (TimeSpan?)TimeSpan.FromSeconds(absoluteSecondsRelativeToNow.Value);
            entityDef.SlidingTime = slidingSeconds == null ? null : (TimeSpan?)TimeSpan.FromSeconds(slidingSeconds.Value);

            IDatabase database = _redisConnection.GetDatabase(_databaseNumber);

            Book book = Mocker.MockOne();

            await AddToDatabaeAsync(new Book[] { book }).ConfigureAwait(false);

            //typeof(Book).GetProperty("Guid").SetValue(book, "123");
            //book.Guid = "12345";
            //book.Name = "abc";
            //book.BookID = 222;


            await _cache.SetEntityAsync(book).ConfigureAwait(false);

            Assert.True(database.KeyExists(_applicationName + nameof(Book) + book.Id));
            Assert.True(database.KeyExists(_applicationName + nameof(Book) + nameof(Book.BookID) + book.BookID));
            Assert.True(database.KeyExists(_applicationName + nameof(Book) + nameof(Book.Name) + book.Name));


            await Task.Delay(10 * 1000);

            (Book? cached3, bool exists3) = await _cache.GetEntityAsync <Book>(nameof(Book.Name), book.Name).ConfigureAwait(false);

            Assert.True(exists3);

            Assert.True(SerializeUtil.ToJson(book) == SerializeUtil.ToJson(cached3 !));


            await Task.Delay(10 * 1000);

            (Book? cached4, bool exists4) = await _cache.GetEntityAsync <Book>(book);

            Assert.False(exists4);

            Assert.False(database.KeyExists(_applicationName + nameof(Book) + book.Id));
            Assert.False(database.KeyExists(_applicationName + nameof(Book) + nameof(Book.BookID) + book.BookID));
            Assert.False(database.KeyExists(_applicationName + nameof(Book) + nameof(Book.Name) + book.Name));
        }
Esempio n. 5
0
        public async Task CacheEntities_TestAsync(int?absoluteSecondsRelativeToNow, int?slidingSeconds)
        {
            Stopwatch      stopwatch = new Stopwatch();
            CacheEntityDef entityDef = CacheEntityDefFactory.Get <Book>();

            entityDef.AbsoluteTimeRelativeToNow = absoluteSecondsRelativeToNow == null ? null : (TimeSpan?)TimeSpan.FromSeconds(absoluteSecondsRelativeToNow.Value);
            entityDef.SlidingTime = slidingSeconds == null ? null : (TimeSpan?)TimeSpan.FromSeconds(slidingSeconds.Value);

            IDatabase database = _redisConnection.GetDatabase(_databaseNumber);

            List <Book> books = Mocker.MockMany();

            await AddToDatabaeAsync(books).ConfigureAwait(false);

            IEnumerable <string> bookIds           = books.Select(b => b.BookID.ToString());
            IEnumerable <string> bookNames         = books.Select(b => b.Name);
            IEnumerable <string> ids               = books.Select(b => b.Id.ToString());
            List <RedisKey>      idRedisKeys       = new List <RedisKey>();
            List <RedisKey>      bookIdRedisKeys   = new List <RedisKey>();
            List <RedisKey>      bookNameRedisKeys = new List <RedisKey>();


            foreach (Book book in books)
            {
                idRedisKeys.Add(_applicationName + nameof(Book) + book.Id);
                bookIdRedisKeys.Add(_applicationName + nameof(Book) + nameof(Book.BookID) + book.BookID);
                bookNameRedisKeys.Add(_applicationName + nameof(Book) + nameof(Book.Name) + book.Name);
            }

            (IEnumerable <Book>?cached, bool exists) = await _cache.GetEntitiesAsync <Book>(nameof(Book.Name), bookNames).ConfigureAwait(false);

            (IEnumerable <Book>?cached2, bool exists2) = await _cache.GetEntitiesAsync <Book>(nameof(Book.Id), ids).ConfigureAwait(false);

            Assert.True(exists == false && cached == null);
            Assert.True(exists2 == false && cached2 == null);

            await _cache.RemoveEntitiesAsync <Book>(nameof(Book.Id), ids, books.Select(b => b.Version)).ConfigureAwait(false);

            await _cache.RemoveEntitiesAsync <Book>(nameof(Book.Name), bookNames, books.Select(b => b.Version)).ConfigureAwait(false);

            stopwatch.Reset();
            stopwatch.Start();
            await _cache.SetEntitiesAsync(books).ConfigureAwait(false);

            stopwatch.Stop();

            _outputHelper.WriteLine($"Set 100 Items, Spend: {stopwatch.ElapsedMilliseconds}");

            Assert.True(idRedisKeys.Count == database.KeyExists(idRedisKeys.ToArray()));
            Assert.True(idRedisKeys.Count == database.KeyExists(bookIdRedisKeys.ToArray()));
            Assert.True(idRedisKeys.Count == database.KeyExists(bookNameRedisKeys.ToArray()));


            stopwatch.Reset();
            stopwatch.Start();
            (IEnumerable <Book>?cached3, bool exists3) = await _cache.GetEntitiesAsync <Book>(nameof(Book.Name), bookNames).ConfigureAwait(false);

            stopwatch.Stop();
            _outputHelper.WriteLine($"Get 100 Items, Spend: {stopwatch.ElapsedMilliseconds}");

            Assert.True(exists3);
            Assert.True(cached3 !.Count() == books.Count);
            Assert.True(SerializeUtil.ToJson(books[0]) == SerializeUtil.ToJson(cached3 !.ElementAt(0)));

            (IEnumerable <Book>?cached4, bool exists4) = await _cache.GetEntitiesAsync <Book>(nameof(Book.Id), ids);

            Assert.True(exists4);
            Assert.True(cached4 !.Count() == books.Count);
            Assert.True(SerializeUtil.ToJson(books[0]) == SerializeUtil.ToJson(cached4 !.ElementAt(0)));

            stopwatch.Reset();
            stopwatch.Start();
            await _cache.RemoveEntitiesAsync <Book>(nameof(Book.Id), ids, books.Select(b => b.Version)).ConfigureAwait(false);

            stopwatch.Stop();
            _outputHelper.WriteLine($"Delete 100 Items, Spend: {stopwatch.ElapsedMilliseconds}");


            Assert.True(0 == database.KeyExists(bookIdRedisKeys.ToArray()));
            Assert.True(0 == database.KeyExists(bookNameRedisKeys.ToArray()));
            Assert.True(0 == database.KeyExists(idRedisKeys.ToArray()));

            await _cache.SetEntitiesAsync <Book>(books).ConfigureAwait(false);

            Assert.True(idRedisKeys.Count == database.KeyExists(idRedisKeys.ToArray()));
            Assert.True(idRedisKeys.Count == database.KeyExists(bookIdRedisKeys.ToArray()));
            Assert.True(idRedisKeys.Count == database.KeyExists(bookNameRedisKeys.ToArray()));

            await _cache.RemoveEntitiesAsync <Book>(nameof(Book.Name), bookNames, books.Select(b => b.Version)).ConfigureAwait(false);

            Assert.True(0 == database.KeyExists(bookIdRedisKeys.ToArray()));
            Assert.True(0 == database.KeyExists(bookNameRedisKeys.ToArray()));
            Assert.True(0 == database.KeyExists(idRedisKeys.ToArray()));
        }