# hazelcast
**Repository Path**: hazelcast/hazelcast
## Basic Information
- **Project Name**: hazelcast
- **Description**: Open Source In-Memory Data Grid
- **Primary Language**: Java
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: http://www.hazelcast.org
- **GVP Project**: No
## Statistics
- **Stars**: 1
- **Forks**: 2
- **Created**: 2017-04-11
- **Last Updated**: 2025-08-10
## Categories & Tags
**Categories**: cache-modules
**Tags**: None
## README
## Hazelcast is a clustering and highly scalable data distribution platform.
With its various distributed data structures, distributed caching capabilities, elastic nature, memcache support,
integration with Spring and Hibernate and more importantly with so many happy users, Hazelcast is feature-rich,
enterprise-ready and developer-friendly in-memory data grid solution.
### Features:
* Distributed implementations of `java.util.{Queue, Set, List, Map}`.
* Distributed implementation of `java.util.concurrent.locks.Lock`.
* Distributed implementation of `java.util.concurrent.ExecutorService`.
* Distributed `MultiMap` for one-to-many relationships.
* Distributed `Topic` for publish/subscribe messaging.
* Distributed Query, MapReduce and Aggregators.
* Synchronous (write-through) and asynchronous (write-behind) persistence.
* Transaction support.
* Specification compliant JCache implementation.
* Native Java, .NET, C++ clients, Memcache and REST clients.
* Socket level encryption support for secure clusters.
* Second level cache provider for Hibernate.
* Monitoring and management of the cluster via JMX.
* Dynamic HTTP session clustering.
* Support for cluster info and membership events.
* Dynamic discovery, scaling, partitioning with backups and fail-over.
### Getting Started
See [Getting Started Guide](http://docs.hazelcast.org/docs/latest/manual/html-single/index.html#getting-started)
### Documentation
See documentation at [www.hazelcast.org](http://hazelcast.org/documentation/)
### Code Samples
See [Hazelcast Code Samples](https://github.com/hazelcast/hazelcast-code-samples)
### Releases
Download from [www.hazelcast.org](http://hazelcast.org/download/)
Or use Maven snippet:
````xml
com.hazelcast
hazelcast
${hazelcast.version}
````
### Snapshot Releases
Maven snippet:
````xml
com.hazelcast
hazelcast
${hazelcast.version}
sonatype-snapshots
Sonatype Snapshot Repository
https://oss.sonatype.org/content/repositories/snapshots
false
true
````
### Building From Source
Pull latest from repo `git pull origin master` and use Maven install (or package) to build `mvn clean install`.
### Testing
Hazelcast has 3 testing profiles:
* **Default**: Type `mvn test` to run quick/integration tests (those can be run in-parallel without using network).
* **Slow Tests**: Type `mvn test -P slow-test` to run tests those are either slow or cannot be run in-parallel.
* **All Tests**: Type `mvn test -P all-tests` to run all test serially using network.
### Checkstyle and Findbugs
In each Pull Request, we do static analyzing on the changes.
Run the following commands locally to check if your contribution is checkstyle and findbugs compatible.
```
mvn clean compile -P findbugs
```
```
mvn clean validate -P checkstyle
```
### Contributing to Hazelcast
We encourage pull requests and process them promptly.
To contribute:
* see [Developing with Git](https://hazelcast.atlassian.net/wiki/display/COM/Developing+with+Git) for our Git process
* complete the [Hazelcast Contributor Agreement](https://hazelcast.atlassian.net/wiki/display/COM/Hazelcast+Contributor+Agreement)
For an enhancement or larger feature, create a GitHub issue first to discuss.
### Mail Group
Please join the mail group if you are interested in using or developing Hazelcast.
[http://groups.google.com/group/hazelcast](http://groups.google.com/group/hazelcast)
#### License
Hazelcast is available under the Apache 2 License. Please see the [Licensing section](http://docs.hazelcast.org/docs/latest-dev/manual/html-single/index.html#licensing) for more information.
#### Copyright
Copyright (c) 2008-2018, Hazelcast, Inc. All Rights Reserved.
Visit [www.hazelcast.com](http://www.hazelcast.com/) for more info.