sysalto / ReactiveReports

Reactive Reports - a framework developed in Scala, designed for generating reports from code.
Other
16 stars 4 forks source link

Option of using a different key value store, instead of rocksDB #1

Closed loveCoding2000 closed 6 years ago

loveCoding2000 commented 6 years ago

Could you please provide users with the option to use a different key value store, instead of rocksDB ?

If this is possible, how long would that take to get completed ? Thanks !

sysalto commented 6 years ago

It's done, see the example

loveCoding2000 commented 6 years ago

Is it possible to use a regular HashMap instead of a database, say instead of Derby, to hold the data of the report ?

sysalto commented 6 years ago

Yes, it's possible. I have updated the java example:MutualFundsNoAkkaJavaReport. Please see the MemoryPersistenceUtil class and it's usage.

loveCoding2000 commented 6 years ago

It works with HashMap, thanks !