Huba Nagy
Huba Nagy
``` def call(*arguments) Async.run do @pool.acquire do |connection| connection.write_request(arguments) return connection.read_response end end end ``` That does not work because call just returns an `Async::Task`. The suggestion with `Async::Notification` works,...
> also there needs to be some level of synchronisation between subsequent commands for 99% of user code. Not just that, internal stuff as well. The Pub/Sub nested context would...
Maybe there is a wider issue here, is there really a convenient way to do asynchronous stuff in REPL in general?
I guess that would do it.
Alright so here is the [commit](https://github.com/socketry/async-redis/commit/e0449b327a2604d86ee1b617b4266915de29295c). @ioquatix what do you make of [this failure](https://travis-ci.org/socketry/async-redis/jobs/475169601#L579). It fails the same way on all supported ruby versions. I have no idea where the...