grizzly icon indicating copy to clipboard operation
grizzly copied to clipboard

Grizzly

Results 13 grizzly issues
Sort by recently updated
recently updated
newest added

Started seeing these in the logs. Not readily reproducible but appears with the later versions of Grizzly 4.0.0 Maybe has something to do with Chrome but I am not sure....

In order to avoid performance degradation when using virtual threads (see https://github.com/eclipse-ee4j/grizzly/pull/2185), usage of thread locals for caching resources should be minimized or completely avoided. Acording to the comment https://github.com/eclipse-ee4j/grizzly/pull/2185#issuecomment-1787016453,...

``` [ERROR] .../org/glassfish/grizzly/servlet/HttpServletResponseImpl.java:[48,8] org.glassfish.grizzly.servlet.HttpServletResponseImpl is not abstract and does not override abstract method sendRedirect(java.lang.String,int,boolean) in jakarta.servlet.http.HttpServletResponse ```

This PR introduces the `VirtualThreadExecutorService`, extending the capabilities of Grizzly's thread pool to support Java's virtual threads. This new executor service leverages the lightweight, user-mode threads introduced in recent Java...

When creating a buffer pool using `PooledMemoryManager`, then DEFAULT_HEAP_USAGE_PERCENTAGE (3%) of the heap is used to calculate the max pool size per slice: ```java final long heapSize = Runtime.getRuntime().maxMemory(); final...

This popped up during an audit. Is there any reason to not use SecureRandom to generate the session id? Could be easily switched.

I am facing Out Of Memory issues on Glassfish 4.0 (Build 89) server. Version of grizzly from \glassfish\glassfish\modules\nucleus-grizzly-all.jar is version="2.3.1" Whenever I face this issue, there is always at-least one...

The `Session` object has built-in handling for timeouts, but it uses `System.currentTimeMillis()` as its source of time. This is affected by operating system time changes, which has a number of...

Hi all, It seems that Grizzly didn't quite get the life outside of GlassFish that we thought it might get. Just like HK2, Grizzly has been exclusively been contributed to...