{"id":20934586,"url":"https://github.com/erudika/para-cache-hazelcast","last_synced_at":"2025-10-24T18:45:21.522Z","repository":{"id":27686196,"uuid":"110477630","full_name":"Erudika/para-cache-hazelcast","owner":"Erudika","description":"Hazelcast Cache plugin for Para","archived":false,"fork":false,"pushed_at":"2025-06-13T08:40:44.000Z","size":172,"stargazers_count":2,"open_issues_count":2,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-13T09:31:37.387Z","etag":null,"topics":["backend","backend-services","cache","caching","distributed","distributed-cache","hazelcast","para","plugin"],"latest_commit_sha":null,"homepage":"https://paraio.org","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Erudika.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-11-12T23:19:38.000Z","updated_at":"2025-06-13T08:40:48.000Z","dependencies_parsed_at":"2023-12-06T19:26:27.309Z","dependency_job_id":"102d5bca-f279-46f0-8d70-6d2dcc19d519","html_url":"https://github.com/Erudika/para-cache-hazelcast","commit_stats":null,"previous_names":[],"tags_count":27,"template":false,"template_full_name":null,"purl":"pkg:github/Erudika/para-cache-hazelcast","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Erudika%2Fpara-cache-hazelcast","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Erudika%2Fpara-cache-hazelcast/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Erudika%2Fpara-cache-hazelcast/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Erudika%2Fpara-cache-hazelcast/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Erudika","download_url":"https://codeload.github.com/Erudika/para-cache-hazelcast/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Erudika%2Fpara-cache-hazelcast/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265228976,"owners_count":23731087,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["backend","backend-services","cache","caching","distributed","distributed-cache","hazelcast","para","plugin"],"created_at":"2024-11-18T22:09:55.007Z","updated_at":"2025-10-24T18:45:21.424Z","avatar_url":"https://github.com/Erudika.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Logo](https://s3-eu-west-1.amazonaws.com/org.paraio/para.png)\n============================\n\n\u003e ### Hazelcast Cache plugin for Para\n\n[![Build Status](https://travis-ci.org/Erudika/para-cache-hazelcast.svg?branch=master)](https://travis-ci.org/Erudika/para-cache-hazelcast)\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.erudika/para-cache-hazelcast/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.erudika/para-cache-hazelcast)\n[![Join the chat at https://gitter.im/Erudika/para](https://badges.gitter.im/Erudika/para.svg)](https://gitter.im/Erudika/para?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\n## What is this?\n\n**Para** was designed as a simple and modular back-end framework for object persistence and retrieval.\nIt enables your application to store objects directly to a data store (NoSQL) or any relational database (RDBMS)\nand it also automatically indexes those objects and makes them searchable.\n\nThis plugin allows Para to cache objects in Hazelcast.\n\n## Documentation\n\n### [Read the Docs](https://paraio.org/docs)\n\n## Getting started\n\nThe plugin is on Maven Central. Here's the Maven snippet to include in your `pom.xml`:\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003ecom.erudika\u003c/groupId\u003e\n  \u003cartifactId\u003epara-cache-hazelcast\u003c/artifactId\u003e\n  \u003cversion\u003e{see_green_version_badge_above}\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nAlternatively you can download the JAR from the \"Releases\" tab above put it in a `lib` folder alongside the server\nWAR file `para-x.y.z.war`. Para will look for plugins inside `lib` and pick up the Hazelcast plugin.\n\n### Configuration\n\nHere are all the configuration properties for this plugin (these go inside your `application.conf`):\n```ini\npara.hc.async_enabled = false\npara.hc.eviction_policy = \"LRU\"\npara.hc.eviction_percentage = 25\npara.hc.ttl_seconds = 3600\npara.hc.max_size = 5000\npara.hc.ec2_discovery_enabled = true\npara.hc.discovery_group = \"hazelcast\"\n```\n\nFinally, set the config property:\n```ini\npara.cache = \"HazelcastCache\"\n```\nThis could be a Java system property or part of a `application.conf` file on the classpath.\nThis tells Para to use the Hazelcast cache implementation instead of the default one.\n\n### Requirements\n\n- Hazelcast (v1.36.0+ uses Hazelcast v4.x, prior versions use v3.x)\n- [Para Core](https://github.com/Erudika/para)\n\n## License\n[Apache 2.0](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferudika%2Fpara-cache-hazelcast","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ferudika%2Fpara-cache-hazelcast","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferudika%2Fpara-cache-hazelcast/lists"}