@@ -73,10 +73,11 @@ public virtual async Task OnInitializeCollectionAsync(InitializeCollectionEvent
73
73
}
74
74
75
75
/// <summary> Try to initialize a collection from the cache</summary>
76
- private async Task < bool > InitializeCollectionFromCacheAsync ( object id , ICollectionPersister persister , IPersistentCollection collection , ISessionImplementor source , CancellationToken cancellationToken )
76
+ private async Task < bool > InitializeCollectionFromCacheAsync (
77
+ object collectionKey , ICollectionPersister persister , IPersistentCollection collection ,
78
+ ISessionImplementor source , CancellationToken cancellationToken )
77
79
{
78
80
cancellationToken . ThrowIfCancellationRequested ( ) ;
79
-
80
81
if ( ! ( source . EnabledFilters . Count == 0 ) && persister . IsAffectedByEnabledFilters ( source ) )
81
82
{
82
83
log . Debug ( "disregarding cached version (if any) of collection due to enabled filters " ) ;
@@ -96,7 +97,7 @@ private async Task<bool> InitializeCollectionFromCacheAsync(object id, ICollecti
96
97
var collectionEntries = new CollectionEntry [ batchSize ] ;
97
98
// The first item in the array is the item that we want to load
98
99
var collectionBatch = await ( source . PersistenceContext . BatchFetchQueue
99
- . GetCollectionBatchAsync ( persister , id , batchSize , false , collectionEntries , cancellationToken ) ) . ConfigureAwait ( false ) ;
100
+ . GetCollectionBatchAsync ( persister , collectionKey , batchSize , false , collectionEntries , cancellationToken ) ) . ConfigureAwait ( false ) ;
100
101
// Ignore null values as the retrieved batch may contains them when there are not enough
101
102
// uninitialized collection in the queue
102
103
var keys = new List < CacheKey > ( batchSize ) ;
@@ -115,16 +116,17 @@ private async Task<bool> InitializeCollectionFromCacheAsync(object id, ICollecti
115
116
var coll = source . PersistenceContext . BatchFetchQueue . GetBatchLoadableCollection ( persister , collectionEntries [ i ] ) ;
116
117
await ( AssembleAsync ( keys [ i ] , cachedObjects [ i ] , persister , source , coll , collectionBatch [ i ] , false , cancellationToken ) ) . ConfigureAwait ( false ) ;
117
118
}
118
- return await ( AssembleAsync ( keys [ 0 ] , cachedObjects [ 0 ] , persister , source , collection , id , true , cancellationToken ) ) . ConfigureAwait ( false ) ;
119
+ return await ( AssembleAsync ( keys [ 0 ] , cachedObjects [ 0 ] , persister , source , collection , collectionKey , true , cancellationToken ) ) . ConfigureAwait ( false ) ;
119
120
}
120
121
121
- var cacheKey = source . GenerateCacheKey ( id , persister . KeyType , persister . Role ) ;
122
+ var cacheKey = source . GenerateCacheKey ( collectionKey , persister . KeyType , persister . Role ) ;
122
123
var cachedObject = await ( persister . Cache . GetAsync ( cacheKey , source . Timestamp , cancellationToken ) ) . ConfigureAwait ( false ) ;
123
- return await ( AssembleAsync ( cacheKey , cachedObject , persister , source , collection , id , true , cancellationToken ) ) . ConfigureAwait ( false ) ;
124
+ return await ( AssembleAsync ( cacheKey , cachedObject , persister , source , collection , collectionKey , true , cancellationToken ) ) . ConfigureAwait ( false ) ;
124
125
}
125
126
126
- private async Task < bool > AssembleAsync ( CacheKey ck , object ce , ICollectionPersister persister , ISessionImplementor source ,
127
- IPersistentCollection collection , object id , bool alterStatistics , CancellationToken cancellationToken )
127
+ private async Task < bool > AssembleAsync (
128
+ CacheKey ck , object ce , ICollectionPersister persister , ISessionImplementor source ,
129
+ IPersistentCollection collection , object collectionKey , bool alterStatistics , CancellationToken cancellationToken )
128
130
{
129
131
cancellationToken . ThrowIfCancellationRequested ( ) ;
130
132
ISessionFactoryImplementor factory = source . Factory ;
@@ -158,7 +160,7 @@ private async Task<bool> AssembleAsync(CacheKey ck, object ce, ICollectionPersis
158
160
IPersistenceContext persistenceContext = source . PersistenceContext ;
159
161
160
162
CollectionCacheEntry cacheEntry = ( CollectionCacheEntry ) persister . CacheEntryStructure . Destructure ( ce , factory ) ;
161
- await ( cacheEntry . AssembleAsync ( collection , persister , persistenceContext . GetCollectionOwner ( id , persister ) , cancellationToken ) ) . ConfigureAwait ( false ) ;
163
+ await ( cacheEntry . AssembleAsync ( collection , persister , persistenceContext . GetCollectionOwner ( collectionKey , persister ) , cancellationToken ) ) . ConfigureAwait ( false ) ;
162
164
163
165
persistenceContext . GetCollectionEntry ( collection ) . PostInitialize ( collection , persistenceContext ) ;
164
166
0 commit comments