Registry / database / infinispan-core

infinispan-core

JSON →
library16.2.1javamavenunverified

Infinispan core module provides a high-performance, distributed in-memory data grid and cache for Java applications.

<dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-core</artifactId> <version>16.2.1</version> </dependency>
INSTALL
IMPORT
SIG · INFINISPAN-CORE
I
infinispan-core
databasejavav16.2.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Cache
org.infinispan.Cache

Minimal example showing how to create a cache, put and get a value using Infinispan.

import org.infinispan.Cache; import org.infinispan.manager.DefaultCacheManager; public class Quickstart { public static void main(String[] args) { DefaultCacheManager cacheManager = new DefaultCacheManager(); Cache<String, String> cache = cacheManager.getCache(); cache.put("key", "value"); System.out.println(cache.get("key")); cacheManager.stop(); } }
Debug
Known issues
breakingInfinispan 16.x requires Java 17 or later.
fix
Ensure your project uses Java 17+ when upgrading to version 16.x.
affects: >=16.0.0
Upgrade
Version history
16.2.1latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
11 hits · last 30 days
node
10
Resources
infinispan-core — mvn dependency:get infinispan-core · libregistry