Merge pull request #18051 from akka/wip-16541-persistence-query

+per #16541 initial version of the Persistence Query module
This commit is contained in:
Konrad Malawski 2015-08-12 22:14:44 +02:00
commit 5a6ee8bd49
30 changed files with 2063 additions and 11 deletions

View file

@ -61,7 +61,7 @@ Architecture
* *AbstractPersistentActorAtLeastOnceDelivery*: To send messages with at-least-once delivery semantics to destinations, also in
case of sender and receiver JVM crashes.
* *Journal*: A journal stores the sequence of messages sent to a persistent actor. An application can control which messages
* *AsyncWriteJournal*: A journal stores the sequence of messages sent to a persistent actor. An application can control which messages
are journaled and which are received by the persistent actor without being journaled. The storage backend of a journal is pluggable.
Persistence extension comes with a "leveldb" journal plugin, which writes to the local filesystem,
and replicated journals are available as `Community plugins`_.