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

As per [this comment](https://github.com/clj-commons/aleph/pull/484#issuecomment-1206366457), I get the impression that Netty's builtin leak detector is too unreliable to be useful. For example, [when introducing an intionally leaking test case](https://github.com/bevuta/aleph/commit/4f6554fe2310b237f4fd82f76f4f093e7a7e4ade) like this:...

It might not be the best way to add such customisation, as it clashes with other fields (total-connections, target-utilization, max-queue-size, stats-callback) but it should work. The rationale of this change...

waiting on user

This is a fix to #393 by @rborer. `(s/on-closed s #(d/success! c true))` means that the request was completed `early?` which leads to a connection being disposed from the pool...

This is a cherry-pick of dac2852c73c8ceeecaa15549c9de08dbcd530efd from the `1.0.0` adjusted to latest `master` and with some additions and corrections to docstrings. As per https://github.com/clj-commons/aleph/pull/608#issuecomment-1200103587

Symmetrical to #393, this PR adds support for HttpObjectAggregator being added to the server pipeline. It also makes possible to solve #452 from the user code. Also, even if #452...

This was uncovered in the process of reviewing #608. See my comments there for more. In short, `wrap-future` checks `.isSuccess` on a future, when it really means to check `.isDone`....

performance
good first issue

Graal does not like it when `Thread` objects are initialized at build time (statically) e.g. error: ``` Error: Detected a started Thread in the image heap. Threads running in the...

waiting on user

Currently transforming the netty pipeline with outbound channel handlers on a TCP server does not work. Aleph expects that you only put onto the stream something that can be converted...

feature request

## Description This PR takes the commits from the `1.0.0` branch related to multipart requests and add some tests around it : [Attempt to provide correct API for multipart resources...

Hi, This is a follow-up of #394. I'm still experiencing random OOM errors while leaving Aleph running for a few hours. Here is what MAT shows: ![image](https://user-images.githubusercontent.com/361403/50633914-3d7cd380-0f4d-11e9-9363-193073e2a67e.png) Looking at [dirigiste...