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

Hey. In case of any unhandled exception, the current behavior is print whole stracktrace into response's body. It's not what we want and there is no way to alter this...

It is sometimes useful to be able to limit the lifetime of a reusable TCP connection in the client pool. This is the most naive implementation with minimal changes. Since...

waiting on user

I'm not completely sure if this is a bug or an intended behavior, but submitting a PR just in case. *Note: see the diff with [?w=1](https://github.com/ztellman/aleph/pull/427/files?w=1).* The current implementation of...

I couldn't figure out how to handle incoming multipart requests on the server using the `decode-request` utility. It seems that the stream gets closed as soon as the upload is...

Hello Zach, Firstly I wanted to say thanks for the great libraries you've developed. I have created a proxy that uses an aleph http server to receive requests and forward...

support request

The immediate goal, post hand-off to clj-commons, is to get people feeling comfortable making contributions, work through the issue backlogs, and cut v1.0 releases for all the libraries, representing a...

Can I request a `kqueue` backend? It looks to me pretty simple tack on since we already have an `epoll` interface defined. Also, I should mention, while employing `:epoll? true`...

feature request
good first issue

Are there any plans on adding interaction with Unix domain sockets? What I'd like to achieve is to interact with Docker daemon via socket as follows: ```bash curl --unix-socket /var/run/docker.sock...

feature request

There's a proposed new buffer API for Netty 5: https://github.com/netty/netty-incubator-buffer-api/blob/070ffa26885ee078f364ad0334c9b177442f370b/RATIONALE.adoc. We should take a look at it and see if it will affect Aleph/Manifold and provide comment if so.

Which is a typical safety requirement, something like `client_max_body_size` directive for Nginx. Netty's `HttpObjectAggregator` [provides](https://github.com/netty/netty/blob/b6d6d98404f216602e0dec8efd83e140c5ff7e00/codec-http/src/main/java/io/netty/handler/codec/http/HttpObjectAggregator.java#L115-L117) this functionality out of the box. The problem with introducing the same kind of settings...

feature request