Reputation: 5577
What options exist to implement application prevalence (think Prevayler) using dartvm on the server ?
I am looking for a pure Dart solution (no inter-process sockets with Java/Prevayler)
Any existing code or project ?
Upvotes: 1
Views: 115
Reputation: 120729
I'm not aware of any object-persistance databases for Dart yet. If you are just looking for a way to serialization object that you could write to disk, there is a serialization library, and another serializers library.
You might also want to try the MongoDB driver for Dart and the objectory library for "object document mapping".
Upvotes: 2