You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+34Lines changed: 34 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,40 @@ This fork was created to work with AWS 1.5, AKKA 2.1, and Play 2.1.
4
4
5
5
With this fork you can publish to your local maven repo so it can easily be included in your own projects without waiting on others to setup new releases.
6
6
7
+
## KNOWN ISSUES
8
+
9
+
Despite the examples you CANNOT convert case classes directly to the AWS msg unless the case class has all Strings as arguments. This means code like
valsaved:Option[Person] =Save(julian) andThen Read[Person](julian.id) // implicit automatically executes and blocks for convenience
34
+
assert(saved ==Some(julian))
35
+
```
36
+
37
+
This means you have to write custom converters for each of your objects unless all your objects have only strings and less than 8 arguments. That being said, unless you plan on taking advantage of their async layer on top of the normal calls, it is not worth using this library IMO.
38
+
39
+
If these things are not show stoppers for you, feel free to use the code. I am no longer going to fix/update/maintain any code within this library.
40
+
7
41
## Overview
8
42
9
43
async-dynamo is an asynchronous scala client for Amazon Dynamo database. It is based on Akka library and provides asynchronous API.
0 commit comments