Hazelcast IMDG

领先的开源内存数据网格:分布式计算,简化。(The Leading Open Source In-Memory Data Grid: Distributed Computing, Simplified. )

Hazelcast是一个集群和高度可扩展的数据分发平台。

Hazelcast具有各种分布式数据结构、分布式缓存功能,弹性性质,Memcache支持,与Spring和Hibernate的集成,更重要的是与众多快乐用户,Hazelcast是功能丰富,企业级和开发人员友好的内存数据网格解决方案。
特性:
  • java.util。{Queue,Set,List,Map}的分布式实现。
  • 分布式实现java.util.concurrent.locks.Lock。
  • 分布式实现java.util.concurrent.ExecutorService。
  • 分布式MultiMap用于一对多关系。
  • 分发主题用于发布/订阅消息。
  • 分布式查询,MapReduce和聚合器。
  • 同步(直写)和异步(write-behind)持久性。
  • 交易支持。
  • 规范兼容JCache实现。
  • Native Java,.NET,C ++客户端,Memcache和REST客户端。
  • 针对安全集群的套接字级别加密支持。
  • Hibernate的二级缓存提供程序。
  • 通过JMX监控和管理集群。
  • 动态HTTP会话群集。
  • 支持群集信息和会员事件。
  • 动态发现,缩放,使用备份和故障切换进行分区。

Overview

Name With Ownerhazelcast/hazelcast
Primary LanguageJava
Program languageJava (Language Count: 7)
Platform
License:Other
Release Count311
Last Release Namev5.4.0 (Posted on )
First Release Namev1.9.3 (Posted on 2012-03-26 10:28:50)
Created At2012-03-21 12:25:18
Pushed At2024-04-19 18:35:41
Last Commit At2024-04-19 21:32:52
Stargazers Count5.9k
Watchers Count298
Fork Count1.8k
Commits Count38.7k
Has Issues Enabled
Issues Count8526
Issue Open Count1235
Pull Requests Count14543
Pull Requests Open Count9
Pull Requests Close Count3167
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private

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 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

Documentation

See documentation at www.hazelcast.org

Code Samples

See Hazelcast Code Samples

Releases

Download from www.hazelcast.org

Or use Maven snippet:

<dependency>
    <groupId>com.hazelcast</groupId>
    <artifactId>hazelcast</artifactId>
    <version>${hazelcast.version}</version>
</dependency>

Snapshot Releases

Maven snippet:

<dependency>
    <groupId>com.hazelcast</groupId>
    <artifactId>hazelcast</artifactId>
    <version>${hazelcast.version}</version>
</dependency>
<repository>
    <id>sonatype-snapshots</id>
    <name>Sonatype Snapshot Repository</name>
    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    <releases>
        <enabled>false</enabled>
    </releases>
    <snapshots>
        <enabled>true</enabled>
    </snapshots>
</repository>

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 that are either slow or cannot be run in parallel.
  • All Tests: Type mvn test -P all-tests to run all tests serially using network.

Checkstyle and SpotBugs

Hazelcast uses static code analysis tools to check if a Pull Request is ready for merge.
Run the following commands locally to check if your contribution is Checkstyle and SpotBugs compatible.

mvn clean validate -P checkstyle
mvn clean compile -P spotbugs

Contributing to Hazelcast

We encourage Pull Requests and process them promptly.

To contribute:

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

License

Hazelcast is available under the Apache 2 License. Please see the Licensing section for more information.

Copyright (c) 2008-2020, Hazelcast, Inc. All Rights Reserved.

Visit www.hazelcast.com for more info.

To the top