Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support caching queries with autodiscovered types #3184

Merged
merged 24 commits into from
Oct 27, 2022
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
c59e60e
Support caching queries with autodiscovered types
fredericDelaporte Oct 2, 2022
94aa1de
Fix a typo
fredericDelaporte Oct 16, 2022
0bf7921
Generate async files
github-actions[bot] Oct 16, 2022
261ac75
Add the aliases directly into cached data
fredericDelaporte Oct 16, 2022
3f28ad9
Generate async files
github-actions[bot] Oct 16, 2022
8228b04
Minimize the change
fredericDelaporte Oct 16, 2022
81c1b18
Generate async files
github-actions[bot] Oct 16, 2022
b38af02
Fix whitespaces
fredericDelaporte Oct 16, 2022
b7bea83
Fix some tests
fredericDelaporte Oct 16, 2022
300ccee
Generate async files
github-actions[bot] Oct 16, 2022
c355c34
Simplify code
fredericDelaporte Oct 18, 2022
ec0c5a0
Implement breaking change minimizing suggestions
fredericDelaporte Oct 23, 2022
fda5a75
Generate async files
github-actions[bot] Oct 23, 2022
ee43157
Fix some more metadata reserved slots changes
fredericDelaporte Oct 23, 2022
594d694
Generate async files
github-actions[bot] Oct 23, 2022
b0a2fd2
Fix a regression fromminimizing breaking change
fredericDelaporte Oct 23, 2022
8bbd84e
Add a JsonSerializer test and fix it
fredericDelaporte Oct 23, 2022
8232bcf
Simplify metadata extraction
fredericDelaporte Oct 23, 2022
c07c6af
Add test for multi-columns cached queries
fredericDelaporte Oct 23, 2022
4b1d56b
Fix a typo
fredericDelaporte Oct 23, 2022
ae9c660
Apply code suggestions
fredericDelaporte Oct 24, 2022
72ee45c
Merge branch 'master' into GH3169
fredericDelaporte Oct 25, 2022
50078f0
Simplify code. Fix comment. Cleanup whitespaces
hazzik Oct 27, 2022
b165a88
Merge branch 'master' into GH3169
hazzik Oct 27, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
536 changes: 536 additions & 0 deletions src/NHibernate.Test/Async/CacheTest/JsonSerializerCacheFixture.cs

Large diffs are not rendered by default.

29 changes: 15 additions & 14 deletions src/NHibernate.Test/Async/QueryTest/MultiCriteriaFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public async Task CanUseSecondLevelCacheWithPositionalParametersAsync()

await (CreateItemsAsync());

await (DoMutiQueryAndAssertAsync());
await (DoMultiQueryAndAssertAsync());

Assert.AreEqual(1, cacheHashtable.Count);
}
Expand All @@ -148,19 +148,20 @@ public async Task CanUseSecondLevelCacheWithPositionalParametersAsync()
public async Task CanGetMultiQueryFromSecondLevelCacheAsync()
{
await (CreateItemsAsync());
//set the query in the cache
await (DoMutiQueryAndAssertAsync());
// Set the query in the cache.
await (DoMultiQueryAndAssertAsync());

var cacheHashtable = MultipleQueriesFixtureAsync.GetHashTableUsedAsQueryCache(Sfi);
var cachedListEntry = (IList)new ArrayList(cacheHashtable.Values)[0];
var cachedQuery = (IList)cachedListEntry[1];
var cachedListEntry = (IList) new ArrayList(cacheHashtable.Values)[0];
// The first element is a timestamp, then only we have the cached data.
var cachedQuery = (IList) cachedListEntry[1] ?? throw new InvalidOperationException("Cached data is null");

var firstQueryResults = (IList)cachedQuery[0];
var firstQueryResults = (IList) cachedQuery[0];
firstQueryResults.Clear();
firstQueryResults.Add(3);
firstQueryResults.Add(4);

var secondQueryResults = (IList)cachedQuery[1];
var secondQueryResults = (IList) cachedQuery[1];
secondQueryResults[0] = 2;

using (var s = Sfi.OpenSession())
Expand All @@ -172,9 +173,9 @@ public async Task CanGetMultiQueryFromSecondLevelCacheAsync()
.Add(CriteriaTransformer.Clone(criteria).SetProjection(Projections.RowCount()));
multiCriteria.SetCacheable(true);
var results = await (multiCriteria.ListAsync());
var items = (IList)results[0];
var items = (IList) results[0];
Assert.AreEqual(2, items.Count);
var count = (int)((IList)results[1])[0];
var count = (int) ((IList) results[1])[0];
Assert.AreEqual(2L, count);
}
}
Expand All @@ -184,12 +185,12 @@ public async Task CanUpdateStatisticsWhenGetMultiQueryFromSecondLevelCacheAsync(
{
await (CreateItemsAsync());

await (DoMutiQueryAndAssertAsync());
await (DoMultiQueryAndAssertAsync());
Assert.AreEqual(0, Sfi.Statistics.QueryCacheHitCount);
Assert.AreEqual(1, Sfi.Statistics.QueryCacheMissCount);
Assert.AreEqual(1, Sfi.Statistics.QueryCachePutCount);

await (DoMutiQueryAndAssertAsync());
await (DoMultiQueryAndAssertAsync());
Assert.AreEqual(1, Sfi.Statistics.QueryCacheHitCount);
Assert.AreEqual(1, Sfi.Statistics.QueryCacheMissCount);
Assert.AreEqual(1, Sfi.Statistics.QueryCachePutCount);
Expand Down Expand Up @@ -390,7 +391,7 @@ public async Task CanNotRetrieveDetachedCriteriaResultWithUnknownKeyAsync()
}
}

private async Task DoMutiQueryAndAssertAsync(CancellationToken cancellationToken = default(CancellationToken))
private async Task DoMultiQueryAndAssertAsync(CancellationToken cancellationToken = default(CancellationToken))
{
using (var s = OpenSession())
{
Expand All @@ -401,9 +402,9 @@ public async Task CanNotRetrieveDetachedCriteriaResultWithUnknownKeyAsync()
.Add(CriteriaTransformer.Clone(criteria).SetProjection(Projections.RowCount()));
multiCriteria.SetCacheable(true);
var results = await (multiCriteria.ListAsync(cancellationToken));
var items = (IList)results[0];
var items = (IList) results[0];
Assert.AreEqual(89, items.Count);
var count = (int)((IList)results[1])[0];
var count = (int) ((IList) results[1])[0];
Assert.AreEqual(99L, count);
}
}
Expand Down
25 changes: 13 additions & 12 deletions src/NHibernate.Test/Async/QueryTest/MultipleMixedQueriesFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,19 +78,20 @@ public void NH_1085_WillGiveReasonableErrorIfBadParameterNameAsync()
public async Task CanGetMultiQueryFromSecondLevelCacheAsync()
{
await (CreateItemsAsync());
//set the query in the cache
await (DoMutiQueryAndAssertAsync());
// Set the query in the cache.
await (DoMultiQueryAndAssertAsync());

var cacheHashtable = MultipleQueriesFixtureAsync.GetHashTableUsedAsQueryCache(Sfi);
var cachedListEntry = (IList)new ArrayList(cacheHashtable.Values)[0];
var cachedQuery = (IList)cachedListEntry[1];
var cachedListEntry = (IList) new ArrayList(cacheHashtable.Values)[0];
// The first element is a timestamp, then only we have the cached data.
var cachedQuery = (IList) cachedListEntry[1] ?? throw new InvalidOperationException("Cached data is null");

var firstQueryResults = (IList)cachedQuery[0];
var firstQueryResults = (IList) cachedQuery[0];
firstQueryResults.Clear();
firstQueryResults.Add(3);
firstQueryResults.Add(4);

var secondQueryResults = (IList)cachedQuery[1];
var secondQueryResults = (IList) cachedQuery[1];
secondQueryResults[0] = 2L;

using (var s = Sfi.OpenSession())
Expand All @@ -103,9 +104,9 @@ public async Task CanGetMultiQueryFromSecondLevelCacheAsync()
.SetInt32(0, 50));
multiQuery.SetCacheable(true);
var results = await (multiQuery.ListAsync());
var items = (IList)results[0];
var items = (IList) results[0];
Assert.AreEqual(2, items.Count);
var count = (long)((IList)results[1])[0];
var count = (long) ((IList) results[1])[0];
Assert.AreEqual(2L, count);
}
}
Expand Down Expand Up @@ -185,12 +186,12 @@ public async Task CanUseSecondLevelCacheWithPositionalParametersAsync()

await (CreateItemsAsync());

await (DoMutiQueryAndAssertAsync());
await (DoMultiQueryAndAssertAsync());

Assert.AreEqual(1, cacheHashtable.Count);
}

private async Task DoMutiQueryAndAssertAsync(CancellationToken cancellationToken = default(CancellationToken))
private async Task DoMultiQueryAndAssertAsync(CancellationToken cancellationToken = default(CancellationToken))
{
using (var s = OpenSession())
{
Expand All @@ -202,9 +203,9 @@ public async Task CanUseSecondLevelCacheWithPositionalParametersAsync()
.SetInt32(0, 50));
multiQuery.SetCacheable(true);
var results = await (multiQuery.ListAsync(cancellationToken));
var items = (IList)results[0];
var items = (IList) results[0];
Assert.AreEqual(89, items.Count);
var count = (long)((IList)results[1])[0];
var count = (long) ((IList) results[1])[0];
Assert.AreEqual(99L, count);
}
}
Expand Down
25 changes: 13 additions & 12 deletions src/NHibernate.Test/Async/QueryTest/MultipleQueriesFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,19 +81,20 @@ public void NH_1085_WillGiveReasonableErrorIfBadParameterNameAsync()
public async Task CanGetMultiQueryFromSecondLevelCacheAsync()
{
await (CreateItemsAsync());
//set the query in the cache
await (DoMutiQueryAndAssertAsync());
// Set the query in the cache.
await (DoMultiQueryAndAssertAsync());

var cacheHashtable = GetHashTableUsedAsQueryCache(Sfi);
var cachedListEntry = (IList)new ArrayList(cacheHashtable.Values)[0];
var cachedQuery = (IList)cachedListEntry[1];
var cachedListEntry = (IList) new ArrayList(cacheHashtable.Values)[0];
// The first element is a timestamp, then only we have the cached data.
var cachedQuery = (IList) cachedListEntry[1] ?? throw new InvalidOperationException("Cached data is null");

var firstQueryResults = (IList)cachedQuery[0];
var firstQueryResults = (IList) cachedQuery[0];
firstQueryResults.Clear();
firstQueryResults.Add(3);
firstQueryResults.Add(4);

var secondQueryResults = (IList)cachedQuery[1];
var secondQueryResults = (IList) cachedQuery[1];
secondQueryResults[0] = 2L;

using (var s = Sfi.OpenSession())
Expand All @@ -106,9 +107,9 @@ public async Task CanGetMultiQueryFromSecondLevelCacheAsync()
.SetInt32(0, 50));
multiQuery.SetCacheable(true);
var results = await (multiQuery.ListAsync());
var items = (IList)results[0];
var items = (IList) results[0];
Assert.AreEqual(2, items.Count);
var count = (long)((IList)results[1])[0];
var count = (long) ((IList) results[1])[0];
Assert.AreEqual(2L, count);
}
}
Expand Down Expand Up @@ -187,12 +188,12 @@ public async Task CanUseSecondLevelCacheWithPositionalParametersAsync()

await (CreateItemsAsync());

await (DoMutiQueryAndAssertAsync());
await (DoMultiQueryAndAssertAsync());

Assert.AreEqual(1, cacheHashtable.Count);
}

private async Task DoMutiQueryAndAssertAsync(CancellationToken cancellationToken = default(CancellationToken))
private async Task DoMultiQueryAndAssertAsync(CancellationToken cancellationToken = default(CancellationToken))
{
using (var s = OpenSession())
{
Expand All @@ -204,9 +205,9 @@ public async Task CanUseSecondLevelCacheWithPositionalParametersAsync()
.SetInt32(0, 50));
multiQuery.SetCacheable(true);
var results = await (multiQuery.ListAsync(cancellationToken));
var items = (IList)results[0];
var items = (IList) results[0];
Assert.AreEqual(89, items.Count);
var count = (long)((IList)results[1])[0];
var count = (long) ((IList) results[1])[0];
Assert.AreEqual(99L, count);
}
}
Expand Down
Loading