Skip to content

Commit

Permalink
Finished integration
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Alfonsi <[email protected]>
  • Loading branch information
Peter Alfonsi committed Dec 11, 2024
1 parent 9e0549f commit 96a6eed
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -842,6 +842,13 @@ public void apply(Settings value, Settings current, Settings previous) {
),
OpenSearchOnHeapCacheSettings.EXPIRE_AFTER_ACCESS_SETTING.getConcreteSettingForNamespace(
CacheType.INDICES_REQUEST_CACHE.getSettingPrefix()
),
CacheSettings.getConcreteStoreNameSettingForCacheType(CacheType.INDICES_QUERY_CACHE),
OpenSearchOnHeapCacheSettings.MAXIMUM_SIZE_IN_BYTES.getConcreteSettingForNamespace(
CacheType.INDICES_QUERY_CACHE.getSettingPrefix()
),
OpenSearchOnHeapCacheSettings.EXPIRE_AFTER_ACCESS_SETTING.getConcreteSettingForNamespace(
CacheType.INDICES_QUERY_CACHE.getSettingPrefix()
)
),
List.of(FeatureFlags.READER_WRITER_SPLIT_EXPERIMENTAL),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -622,6 +622,9 @@ public BulkScorer bulkScorer(LeafReaderContext context) throws IOException {
}
}

/**
* Key for the pluggable cache.
*/
public static class CompositeKey implements Accountable {
final int leafCacheId;
final Query query;
Expand Down

0 comments on commit 96a6eed

Please sign in to comment.