Fork me on GitHub
#ring
<
2017-09-13
>
laujensen19:09:45

Evening - Do Ring sessions guarantee any kind of uniqueness, or will they repeat over time?

chrisjd19:09:34

Do you mean the cookie for in-memory server-side storage? If so, you shouldn't get collisions - the cookie is generated using java.util.UUID/randomUUID (see https://github.com/ring-clojure/ring/blob/master/ring-core/src/ring/middleware/session/memory.clj)

laujensen20:09:11

No then there shouldnt be collisions. Thanks @chrisjd