An open API service providing package, version and dependency metadata of many open source software ecosystems and registries.

Top 2.7% on proxy.golang.org
Top 1.9% dependent packages on proxy.golang.org
Top 1.9% dependent repos on proxy.golang.org
Top 3.5% forks on proxy.golang.org

proxy.golang.org : github.com/kataras/go-sessions/v3

Package sessions provides sessions support for net/http and valyala/fasthttp unique with auto-GC, register unlimited number of databases to Load and Update/Save the sessions in external server or to an external (no/or/and sql) database Usage net/http: // init a new sessions manager( if you use only one web framework inside your app then you can use the package-level functions like: sessions.Start/sessions.Destroy) manager := sessions.New(sessions.Config{}) // start a session for a particular client manager.Start(http.ResponseWriter, *http.Request) // destroy a session from the server and client, manager.Destroy(http.ResponseWriter, *http.Request) Usage valyala/fasthttp: // init a new sessions manager( if you use only one web framework inside your app then you can use the package-level functions like: sessions.Start/sessions.Destroy) manager := sessions.New(sessions.Config{}) // start a session for a particular client manager.StartFasthttp(*fasthttp.RequestCtx) // destroy a session from the server and client, manager.DestroyFasthttp(*fasthttp.Request) Note that, now, you can use both fasthttp and net/http within the same sessions manager(.New) instance! So now, you can share sessions between a net/http app and valyala/fasthttp app

Registry - Source - Documentation - JSON - codemeta.json
purl: pkg:golang/github.com/kataras/go-sessions/v3
Keywords: fasthttp , go , golang , high-performance , iris , iris-golang , nethttp , sessions
License: MIT
Latest release: over 3 years ago
First release: about 3 years ago
Namespace: github.com/kataras/go-sessions
Dependent packages: 8
Dependent repositories: 8
Stars: 182 on GitHub
Forks: 47 on GitHub
See more repository details: repos.ecosyste.ms
Funding links: https://github.com/sponsors/kataras
Last synced: 29 days ago

    Loading...
    Readme
    Loading...