SyliusResourceBundle icon indicating copy to clipboard operation
SyliusResourceBundle copied to clipboard

Asynchronous streaming communication for Clojure - web server, web client, and raw TCP/UDP

Results 126 SyliusResourceBundle issues
Sort by recently updated
recently updated
newest added

There are quite a few changes introduced here. Would be more than happy to get comments before merging into `1.0.0` branch 😀 Notably: * both servers and clients close connection...

Hello, I have a number of client devices connecting as websocket clients to a server. To handle network interruptions, I reconnect to the WS server after each disconnection, with some...

good first issue

When going though a proxy, local name resolution isn't necessary, because the full URL is send to the proxy. If I set only `:proxy-options` in `:connection-options` while creating a `connection-pool`,...

operational improvements

Reproduction is pretty simple: 1) Get yourself an InputStream (in my case, one from Minio SDK when getting an object from the storage - which originates from OkHttp) 2) Pass...

We're are using `Aleph 0.4.6` and we ran several times into the issue where threads get stuck when dereferencing `http` requests. Today, it occurred in these 2 functions: ```clojure (defn...

I'm not an expert, but here is what I've done trying to get mutual authentication : [https://gist.github.com/dvlopt/de48dbe6b7e1d7ea93c3beb929e146d0](url) Basically, in order for the client to make a request to my local...

Feel free to mark this as a minor issue, and I don't have a generic solution right now, just throwing around some ideas. manifold-scheduler-pool that is used whenever `manifold.time/in` is...

performance

If a server sends response while a client is still transferring request body, the exception raised by netty (see details below) is caught in client handler and causes an appropriate...

feature request

Explicitly set "Transfer-Encoding: chunked" might lead to a chunked response being sent alongside with the Content-Length header. ```clojure (require '[aleph.http :as http]) (http/start-server (fn [_] {:status 200 :headers {"transfer-encoding" "chunked"}...

This could be done manually by switching to `raw-handler` and tracking time we need to read chunks from the stream, but in most general use case like ```clojure (defn handler...

feature request