https://github.com/simukappu/coherence-tools
Utility tools for Oracle Coherence
https://github.com/simukappu/coherence-tools
coherence coherence-ce distributed-computing oracle-coherence
Last synced: 6 months ago
JSON representation
Utility tools for Oracle Coherence
- Host: GitHub
- URL: https://github.com/simukappu/coherence-tools
- Owner: simukappu
- License: mit
- Created: 2015-06-13T12:43:22.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2024-02-02T20:33:15.000Z (over 2 years ago)
- Last Synced: 2025-07-14T07:07:11.242Z (12 months ago)
- Topics: coherence, coherence-ce, distributed-computing, oracle-coherence
- Language: Java
- Homepage:
- Size: 452 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: MIT-LICENSE
Awesome Lists containing this project
README
# Coherence tools
[](https://github.com/simukappu/coherence-tools/actions/workflows/build.yml)
[](https://maven-badges.herokuapp.com/maven-central/io.github.simukappu/coherence-tools)
[](MIT-LICENSE)
Utility tools for Oracle Coherence
## Description
Utility tools for Oracle Coherence includes following components
### Distributed Processing Tools
[](https://maven-badges.herokuapp.com/maven-central/io.github.simukappu/distributed-processing-tools)
Tools to run distributed processing task in multiple Coherence member processes exclusively. This component enables distributed processing with dynamic changes in number of processing members, which provides following functions
* FIFO distributed processor: Consumer/Function implementation for distributed processing as first in, first out
* Hash modulo filter: Filter to get target entries by hashCode modulo of a key/value object or a field of it
See [distributed-processing-tools](distributed-processing-tools)
### Write Behind Tools
[](https://maven-badges.herokuapp.com/maven-central/io.github.simukappu/write-behind-tools)
Tools for write behind queue, which provides following functions
* Get current write behind queue size in the cluster
* Clear retaining data in write behind queue in the cluster
See [write-behind-tools](write-behind-tools)
### Spring MyBatis CacheStore
[](https://maven-badges.herokuapp.com/maven-central/io.github.simukappu/spring-mybatis-cachestore)
CacheStore implementation integrated with Spring and MyBatis framework
See [spring-mybatis-cachestore](spring-mybatis-cachestore)
### Multi Clusters Proxy
[](https://maven-badges.herokuapp.com/maven-central/io.github.simukappu/multi-clusters-proxy)
Tools for Coherence*Extend proxy to connect with multiple clusters, which provides following components
* SelectableCacheFactory: Extended CacheFactory class to operate multiple named caches from different clusters
See [multi-clusters-proxy](multi-clusters-proxy)
## Usage
You can use *coherence-tools* with Apache Maven from Maven Central Repository. Add dependency to pom.xml like this:
```xml
io.github.simukappu
coherence-tools
1.0.0
pom
```
If you would like to use specific module, add dependency to pom.xml like this:
```xml
io.github.simukappu
distributed-processing-tools
1.0.0
```
## Requirements
These tools require Oracle Coherence.
### Using Oracle Coherence Community Edition
All builtin test modules uses [Oracle Coherence Community Edition](https://coherence.community). All required modules are packaged as Maven project.
### Using Oracle Coherence Non-Community Edition
If you would like to use non-community edition, you need to install Oracle Coherence.
See [Oracle Coherence](https://www.oracle.com/middleware/technologies/coherence.html) for more details (When not for development purposes, Oracle Coherence license is needed).
1. Download Coherence Stand-Alone Install from [Oracle Technology Network](https://www.oracle.com/middleware/technologies/coherence-downloads.html)
2. Run installer as following command with your Coherence version
```sh
$ java -jar fmw_12.2.1.0.0_coherence.jar
```
3. Register Coherence to local Maven repository
```sh
$ mvn -DpomFile=$ORACLE_HOME/oracle_common/plugins/maven/com/oracle/maven/oracle-maven-sync/12.2.1/oracle-maven-sync-12.2.1.pom -Dfile=$ORACLE_HOME/oracle_common/plugins/maven/com/oracle/maven/oracle-maven-sync/12.2.1/oracle-maven-sync-12.2.1.jar install:install-file
$ mvn -Doracle-maven-sync.oracleHome=$ORACLE_HOME -Doracle-maven-sync.testOnly=false com.oracle.maven:oracle-maven-sync:12.2.1-0-0:push
```
## License
[MIT License](MIT-LICENSE)