Fork me on GitHub
#datahike
<
2022-02-07
>
Casey20:02:17

Is there a mechanism to register hooks that rewrite data on the way in or out of the db? For example to transparently convert java.time.Instants to jave.util.Date on the way in (transact) and vice versa on the way out (pull)?

peterdee22:02:02

Not that I'm aware of. I these cases I just recursively walk the data before reading or writing. You could systematize that process easily easily, I think.