No description
Find a file
Patrik Nordwall cbe5dd2cf5 +cdd #16799 Add Distributed Data module
Previously know as [patriknw/akka-data-replication](https://github.com/patriknw/akka-data-replication),
which was originally inspired by [jboner/akka-crdt](https://github.com/jboner/akka-crdt).

The functionality is very similar to akka-data-replication 0.11.

Here is a list of the most important changes:

* The package name changed to `akka.cluster.ddata`
* The extension was renamed to `DistributedData`
* The keys changed from strings to classes with unique identifiers and type information of the data values,
  e.g. `ORSetKey[Int]("set2")`
* The optional read consistency parameter was removed from the `Update` message. If you need to read from
  other replicas before performing the update you have to first send a `Get` message and then continue with
  the ``Update`` when the ``GetSuccess`` is received.
* `BigInt` is used in `GCounter` and `PNCounter` instead of `Long`
* Improvements of java api
* Better documentation
2015-06-18 15:58:22 +02:00
akka-actor Merge pull request #17490 from akka/wip-17010-logger-mailbox-patriknw 2015-06-17 16:49:42 +02:00
akka-actor-tests Merge pull request #17490 from akka/wip-17010-logger-mailbox-patriknw 2015-06-17 16:49:42 +02:00
akka-agent =pro run multi-jvm tests when validating pr 2015-05-28 13:57:50 +03:00
akka-bench-jmh Merge pull request #17593 from ktoso/wip-deferAsync-ktoso 2015-05-29 15:13:00 +02:00
akka-camel =pro run multi-jvm tests when validating pr 2015-05-28 13:57:50 +03:00
akka-cluster =rem #17567 Adjust parameters for DeadlineFailureDetector 2015-05-29 10:20:42 +02:00
akka-cluster-metrics +act #17576 Support serializer with string manifest 2015-06-01 13:45:31 +02:00
akka-cluster-sharding !per Make persistent failures fatal 2015-06-17 15:49:47 +02:00
akka-cluster-tools !clt #15410 Change path in ClusterSingletonProxy.props 2015-06-18 11:31:29 +02:00
akka-contrib Merge pull request #17764 from akka/wip-17501-harden-ReliableProxySpec-patriknw 2015-06-18 11:16:10 +02:00
akka-distributed-data +cdd #16799 Add Distributed Data module 2015-06-18 15:58:22 +02:00
akka-docs +cdd #16799 Add Distributed Data module 2015-06-18 15:58:22 +02:00
akka-kernel =pro run multi-jvm tests when validating pr 2015-05-28 13:57:50 +03:00
akka-multi-node-testkit =pro run multi-jvm tests when validating pr 2015-05-28 13:57:50 +03:00
akka-osgi =pro run multi-jvm tests when validating pr 2015-05-28 13:57:50 +03:00
akka-persistence =per #16542 Don't store sender in PersistentRepr 2015-06-18 12:46:50 +02:00
akka-persistence-tck =per #16542 Don't store sender in PersistentRepr 2015-06-18 12:46:50 +02:00
akka-remote =rem #17554 Improve flow control of system message delivery 2015-06-16 06:55:24 +02:00
akka-remote-tests =pro run multi-jvm tests when validating pr 2015-05-28 13:57:50 +03:00
akka-samples Merge pull request #17696 from akka/wip-15410-singleton-name-patriknw 2015-06-18 12:45:22 +02:00
akka-slf4j Merge pull request #17490 from akka/wip-17010-logger-mailbox-patriknw 2015-06-17 16:49:42 +02:00
akka-stream/src Changes all occurances of Typesafe copyright to extend to 2015 2015-03-10 14:12:19 -07:00
akka-testkit =pro run multi-jvm tests when validating pr 2015-05-28 13:57:50 +03:00
akka-typed =pro run multi-jvm tests when validating pr 2015-05-28 13:57:50 +03:00
atmos/src/main/resources Trace all system actors 2013-06-27 16:03:30 +02:00
project +cdd #16799 Add Distributed Data module 2015-06-18 15:58:22 +02:00
scripts !pro #17380 Build with Java 8 2015-05-18 12:51:34 +02:00
src/main/ls Update ls.implicit.ly sbt settings 2012-03-10 10:30:38 +13:00
.gitignore !clt #15110 Use buffer instead of stash in singleton proxy 2015-06-18 11:18:24 +02:00
build.sbt =pro run multi-jvm tests when validating pr 2015-05-28 13:57:50 +03:00
CONTRIBUTING.md updated scalariform link 2015-05-27 17:23:59 +02:00
LICENSE Changes all occurances of Typesafe copyright to extend to 2015 2015-03-10 14:12:19 -07:00
README.md switch README from textile to markdown and freshen it up 2015-04-16 22:10:32 +02:00

Akka

We believe that writing correct concurrent & distributed, resilient and elastic applications is too hard. Most of the time it's because we are using the wrong tools and the wrong level of abstraction.

Akka is here to change that.

Using the Actor Model we raise the abstraction level and provide a better platform to build correct concurrent and scalable applications.

For resilience we adopt the "Let it crash" model which the telecom industry has used with great success to build applications that self-heal and systems that never stop.

Actors also provide the abstraction for transparent distribution and the basis for truly scalable and fault-tolerant applications.

Akka is Open Source and available under the Apache 2 License.

Learn more at akka.io. Join the akka-user mailing list. Follow @akkateam on twitter.

Gitter