package sihl

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Use this module to create user sessions and to read and write session data.

module Service : sig ... end

The session service exposes a key-value store that is scoped by user session

module Sig : sig ... end
type data_map = (string * string) list
type data = string Stdlib__Map.Make(Stdlib.String).t
type t
module Map : sig ... end
val sexp_of_t : t -> Sexplib0.Sexp.t
val key : t -> string
val data : t -> string Map.t
val is_expired : Ptime.t -> t -> bool
val data_of_string : string -> (data, string) Result.t
val string_of_data : data -> string
val get : string -> t -> string option
val set : key:string -> value:string -> t -> t
val remove : key:string -> t -> t
val pp : Stdlib.Format.formatter -> t -> unit
val t : t Caqti_type.t