mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
Session also supports arrays
This commit is contained in:
parent
8c600cb26e
commit
a8e53fb94e
2 changed files with 34 additions and 1 deletions
|
@ -16,7 +16,7 @@ module Kemal
|
|||
# Sessions are pruned hourly after 48 hours of inactivity.
|
||||
class Sessions
|
||||
# Session Types are String, Integer, Float and Boolean
|
||||
alias SessionTypes = String | Int64 | Float64 | Bool
|
||||
alias SessionTypes = String | Int32 | Float64 | Bool | Array(String | Int32 | Float64 | Bool)
|
||||
|
||||
# In-memory, ephemeral datastore only.
|
||||
#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue