user77115
user77115

Reputation: 5577

How to implement application prevalence using dartvm?

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

Answers (1)

Seth Ladd
Seth Ladd

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

Related Questions