-
Notifications
You must be signed in to change notification settings - Fork 470
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
3 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ Also, is there a reason these `1000` `gets` have be done serially in one thread? | |
|
||
=== Answer | ||
|
||
The stateless client has been replaced with Chronicle Datagrid. The stateless client is not supported in ChronicleMap 3.x. For more information, please refer to Chronicle Datagrid FAQ's. | ||
The stateless client is not supported in ChronicleMap 3.x. For more information, please contact [email protected]. | ||
|
||
For `get()s`, parallelizing will reduce costs. For `put()s`, if you have concurrency requirements, that is, multi-key lock before updating all of them, it should be in one thread. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -128,13 +128,6 @@ Please contact us at mailto:[email protected][[email protected]] i | |
|
||
NOTE: For access to commercially available features please contact mailto:[email protected][[email protected]]. | ||
|
||
== Peer projects | ||
- Chronicle Datagrid. Reactive processing framework | ||
supporting Chronicle Map as a backend. | ||
|
||
- http://vanillajava.blogspot.com/2015/09/chronicle-journal-customizable-data.html[Chronicle Journal]. Another | ||
key-value built by Chronicle Software, with different properties. | ||
|
||
== Community support: | ||
- https://github.com/OpenHFT/Chronicle-Map/issues[Issues] | ||
- https://groups.google.com/forum/#!forum/chronicle-map[Chronicle Map mailing list] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,9 +18,9 @@ Changes between Chronicle Map 3 and the previous Chronicle Map version are detai | |
|
||
- "Listeners" mechanism fully reworked; see <<CM_Tutorial_Behaviour.adoc#,Behaviour Customization>>. This has a number of important consequences, most notable is that it is now possible to define "eventual-consistency" replication strategy, different from "last write wins"; any state-based CRDT. | ||
|
||
- "Stateless clients" functionality (remote calls) is moved to Chronicle Datagrid. | ||
- "Stateless clients" functionality (remote calls) has been removed. Contact [email protected] if you need help with this. | ||
|
||
- Replication is performed using Chronicle Datagrid. | ||
- Replication is performed using Chronicle Queue Enterprise. | ||
|
||
- Earlier versions of Chronicle Map had hard creation-time limits on the number of entries storable in a Chronicle Map. If the size exceeded this limit, an exception was thrown. + | ||
In Chronicle Map 3, this limitation is removed. The number of entries still has to be configured when the Chronicle Map is created, Exceeding this configured limit is possible, but discouraged. + | ||
|