What is Prevayler for?

1

I am studying Prevayler in college, but I do not know the real utility, nor the use of it, searching the internet I found several discussions but nothing that really explains what it is for. Would it be to store data in memory to persist all at once through a command? Or did I say screwed up?

Thanks to the community.

    
asked by anonymous 06.07.2016 / 14:48

1 answer

2

This is a different Data Persistence library.

First, persistence of data is a way to save the information, so you can use it later, be it in databases or logs, such as Prevayler.

Its legal is that it does persistence by logging and serializes objects to disk, it is not relational like other persistence libraries, ie it will not create databases and tables, to store this information.

The idea is interesting, and I would choose to use it in small projects, or in cases where information is temporary.

    
06.07.2016 / 22:09