Hi, I like MVStore very much. It is just a great library for implementing embedded key/value database solutions. I have also been using Kotlin for development. One of the great things about Kotlin is its asynchronous coroutines feature. In order to use Kotlin coroutines effectively, it is important that your code does not do any synchronous blocking IO. I am not sure whether I can use MVStore library safely in coroutines assuming that it does not do synchronous blocking IO. It is obvious that when MVStore is configured to use FileStore or OffHeapStore, some kind of system IO will be incurred. But, what if I just use the in-memory part of MVStore without configuring it with any FileStore? Does the pure in-memory part of MVStore make any blocking system calls?
Best regards, VN -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/h2-database/38c327e0-289d-4320-99e7-fa482f4fedcfo%40googlegroups.com.
