Versions in this module Expand all Collapse all v0 v0.0.1 Mar 10, 2023 Changes in this version + type Cache struct + func NewCache() *Cache + func (c *Cache) Del(key string) + func (c *Cache) Get(key string) ([]byte, bool) + func (c *Cache) Set(key string, value []byte) + func (c *Cache) SetWithTimeout(key string, value []byte, timeout time.Duration) + type Cookie struct + func NewCookie() *Cookie + func (c *Cookie) CookieString(u *url.URL) string + func (c *Cookie) Cookies(u *url.URL) []*http.Cookie + func (c *Cookie) DeleteCookie(u *url.URL) + func (c *Cookie) SetCookieString(u *url.URL, cookies string) + func (c *Cookie) SetCookies(u *url.URL, cookies []*http.Cookie)