]
Radoslav Husar updated WFLY-11626:
----------------------------------
Git Pull Request:
Reduce unnecessary per-request array allocation/copies when parsing
jsessionid
------------------------------------------------------------------------------
Key: WFLY-11626
URL:
https://issues.jboss.org/browse/WFLY-11626
Project: WildFly
Issue Type: Task
Components: Clustering, Web (Undertow)
Affects Versions: 15.0.1.Final
Reporter: Paul Ferraro
Assignee: Paul Ferraro
Priority: Major
Fix For: 16.0.0.Beta1
Every web request currently parses an encoded session ID into 2 strings, one for the
decoded session ID, and another for the route. Another set of strings is generated when
determining whether the route for the current session has changed. This results in the
allocation and copying of several sets of char arrays, most of which can be avoided.