1

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 ?

user77115
  • 5,517
  • 6
  • 37
  • 40

1 Answers1

2

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".

Seth Ladd
  • 112,095
  • 66
  • 196
  • 279
  • I was hoping for a pure in-memory solution with disk snapshots of full state, the way Prevayler works or some SmallTalk like image file thingy or a java2dart conversion of Prevayler. Still early days... – user77115 Apr 22 '13 at 04:35