Martin Grotzke

Results 189 comments of Martin Grotzke

You should only set sticky=false if you are not going to use sticky sessions. I.e. you must configure your loadbalancer appropriately, this also depends on the web framework you're using.

I think part of the issue is that we're creating the `InetSocketAddress` via `new InetSocketAddress( hostname, port )` [here](https://github.com/magro/memcached-session-manager/blob/master/core/src/main/java/de/javakaffee/web/msm/MemcachedNodesManager.java#L246), which performs the name lookup on creation (via `InetAddress.getByName(hostname)`) - no...

Btw, which memcached client are you using, spymemcached, couchbase or elasticache?

@gilesw Not sure if haproxy would work. I just checked if one could override `InetSocketAddress` to perform transparent reresolution once its `InetAddress` is accessed (which is called from `SocketChannel.connect` invoked...

This was added with PR #354 but was not released until now - shame on me! ;-) I promise to push a new release soon.

Sorry for the delay. This could be a timing issue between the login request and the ajax requests. The ajax requests must not start before the login request returned (so...

If you want me to have a look at the logs please provide more than the previous excerpt, which seems to be filtered.

My address is martin dot grotzke at gmail com. Hopefully I can identify the relevant requests. It would probably be helpful if you could note the urls of relevant requests,...

Just for reference, the issue was probably related to ajax requests and the solution seems to be to remove js files from the requestUriIgnorePattern, e.g. change it to `requestUriIgnorePattern=".*\.(ico|png|gif|jpg|css)$"`.

Thanks for this detailed report! AFAICS the two request logs show a different order of the attributes (attributesData), which most probably explains the different hashcode. Therefore we'd have to sort...