dmjio

Results 196 comments of dmjio

@phaazon is it possible to anonymize the table and field names?

Yes, `microlens` might be worth it. This issue was mostly created to address the perceived lack of update selectors. I'd say we could backlog this issue, for now.

Maybe @Lemmih could chime in (if he's not too busy with LHC) as to the motivation of introducing `Strict.copy`, coming up on a decade old patch here.

Per the docs, > `createArchive:` Move all log files that are no longer necessary for state restoration into the Archive folder in the state directory. *This folder can then be...

With the remote module you can separate your acid-state data store from your web server process. In regards to _not_ keeping all of the data in RAM, the docs do...

@GetContented the beauty of acid-state is exactly that, the marshaling code is so natural, since it's language specific serialization. The con is that this language specific (cereal / binary) serialization,...

There's also projects to convert postgres tables into streams (pipes/conduits)

So postgresql has a raw binary protocol, but there doesn't (to my knowledge... maybe `hasql` has this) exist pure Haskell bindings for it. The way most haskell postgresql libs communicate...

So at some level we eventually need to send raw bytes which get transmitted over TCP right? ``` haskell {-# LANGUAGE OverloadedStrings #-} import Database.PostgreSQL.Simple hello :: IO Int --...

https://hackage.haskell.org/package/postgresql-simple-0.4.10.0/docs/Database-PostgreSQL-Simple-FromRow.html