Skip to main content
Module

x/session/stores/redis.ts>default

Sessions for deno web frameworks
Latest
class default
implements IStore
import { default } from "https://deno.land/x/session@v1.0.0/stores/redis.ts";

Constructors

new
default(options: any)

Properties

private
_hostname: string
private
_port: number
private
_sessionRedisStore: any

Methods

createSession(sessionId: string): Promise<void>
deleteSession(sessionId: any): Promise<void>
getSessionById(sessionId: string): Promise<any>
sessionExists(sessionId: string): Promise<boolean>
setSessionVariable(
sessionId: any,
sessionVariableKey: any,
sessionVariableValue: any,
): Promise<void>