On Thu, 16 Nov 2017 14:24:27 GMT, John Smith wrote:

H

The message appears to have gotten lost, so I'll just summarize the intended status quo. Array types should be settable in sessions like normal values (both with Session.set and SessionVar!T).

However, they actually behave as value types, so adding or removing elements requires setting the whole array again (e.g. session.set("some_array", session.get!(int[])("some_array") ~ 1);). So if the array has a non-trivial size, it should be stored manually in a database or key/value store using the session ID as the lookup key.