-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27341 from karesti/create-caches-infinispan-prope…
…rties Create caches in Infinispan using the application.properties
- Loading branch information
Showing
8 changed files
with
118 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
integration-tests/infinispan-client/src/main/resources/META-INF/hotrod-client.properties
This file was deleted.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
integration-tests/infinispan-client/src/main/resources/application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
quarkus.infinispan-client.cache.default.configuration-uri=cacheConfig.xml | ||
quarkus.infinispan-client.cache.magazine.configuration=<distributed-cache><encoding media-type="application/x-protostream"/></distributed-cache> | ||
quarkus.infinispan-client.cache.default.near-cache-mode=INVALIDATED | ||
quarkus.infinispan-client.cache.default.near-cache-max-entries=2 | ||
quarkus.infinispan-client.cache.default.near-cache-use-bloom-filter=false | ||
quarkus.infinispan-client.cache.magazine.near-cache-mode=INVALIDATED | ||
quarkus.infinispan-client.cache.magazine.near-cache-max-entries=2 | ||
quarkus.infinispan-client.cache.magazine.near-cache-use-bloom-filter=false | ||
quarkus.native.resources.includes=cacheConfig.xml |
3 changes: 3 additions & 0 deletions
3
integration-tests/infinispan-client/src/main/resources/cacheConfig.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<distributed-cache> | ||
<encoding media-type="application/x-protostream"/> | ||
</distributed-cache> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters