https://issues.apache.org/bugzilla/show_bug.cgi?id=51752

[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         OS/Version|                            |All

--- Comment #1 from [email protected] 2011-09-07 12:53:25 UTC ---
Caused by current implementation of CacheManager, which using ThreadLocal to
separate Cache for each thread(virtual user).

This is causing to separate the Cache to each thread in the concurrent pool,
thus breaking the cache.

Currently in CacheManager.java:
private transient ThreadLocal<Map<String, CacheEntry>> threadCache;


Suggested solution:
Removing ThreadLocal from the code.
Changing the key to include the url (current key) + ThreadName.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to