Antti Laisi

Results 19 comments of Antti Laisi

Hi, interesting idea. The library has no blocking methods, but a callback-based API (or future or promise) could be added. NettyPgProtocolStream currently passes the backend messages to PgConnection only after...

Manifold looks interesting. That interface could be included in postgres.async in a separate namespace and with provided scope manifold leiningen dependency.

Hi, release 0.7 (just now syncing to maven central) returns query results as Rx Observables and can emit individual rows to the subscriber before the entire result set is received....

Hi, short answer: not yet, long answer: yes and no. The underlying Java library supports LISTEN, and you can access it directly as the object returned by `open-db` is a...

Thanks, I'll try to reproduce the error. The connection pool needs connection validation support to catch cases like this.

Tracked issue: https://github.com/alaisi/postgres-async-driver/issues/7

Hi, can you test with the the master branch version to see if it fixes the problems you've been having. Configure the connection pool with: ``` clojure (open-db {:hostname ......

Thanks for the info. I'm looking into the performance issue. Is the test suite using a single db on an atom or is an instance opened/closed for each test or...

You could wrap close-db in (thread) or (thread-call) to get similiar semantics as before, eg. the component is considered closed when the db has started to shut down.