András Belicza

Results 106 comments of András Belicza

Anyone noticed this issue has number #911? (Sorry for non-constructive comment). I love(d) Atom and the go-plus duo, I'm sorry to see it fade away. Indeed, having no code completion...

Getting / setting values in the session is done via the [`Session`](https://godoc.org/github.com/icza/session#Session) interface, not via the `Manager`. The `Session` interface has a `Session.Attr()` method for getting a value, and a...

Some additional notes after re-reading your question: Changing attributes in the session is a server side operation, it needs no client, cookie or manager updates. If another request will access...

True. But that will only cause "trouble" if you have multiple (web) server nodes. The GAE (Google App Engine) Memcache store implementation solves this by requiring to call the `Manager.Close()`...

Thanks for reporting this. As a "temporary" fix, I changed the default operation to save sessions in the Datastore synchronously (before returning from the request).

I saw your issue, just didn't have time for it yet. Will look into it soon.

Ok, so some questions. - What session manager do you use (`session.Manager`)? The default, global one which is `session.CookieManager`? - What session store do you use? The default in-memory store...

I'm not sure, but I guess you can easily test that (by not redirecting).

Good idea, it might have been an overlook from my part when designing the API. Similarly, if we proceed to add an `error` return value too to the `Store` methods,...

I haven't thought about it. Does anyone else need it?