client side cache
This commit is contained in:
parent
474de0734f
commit
6f7c7c5ea7
@ -4,6 +4,7 @@ import (
|
|||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.tijl.dev/tijl/shortify/pkg/generation"
|
"git.tijl.dev/tijl/shortify/pkg/generation"
|
||||||
@ -19,6 +20,12 @@ type Client struct {
|
|||||||
db *bolt.DB
|
db *bolt.DB
|
||||||
retryQueue chan shortenJob
|
retryQueue chan shortenJob
|
||||||
stopRetry chan struct{}
|
stopRetry chan struct{}
|
||||||
|
|
||||||
|
// In-memory cache
|
||||||
|
cacheMap map[string]string // longURL -> shortID
|
||||||
|
cacheLock sync.RWMutex
|
||||||
|
maxCacheSize int
|
||||||
|
cacheCount int
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewClient with persistence and retry queue
|
// NewClient with persistence and retry queue
|
||||||
@ -41,6 +48,10 @@ func NewClient(serverURL string, folder string) (*Client, error) {
|
|||||||
stopRetry: make(chan struct{}),
|
stopRetry: make(chan struct{}),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cli.cacheMap = make(map[string]string)
|
||||||
|
cli.maxCacheSize = 10000 // or make this configurable
|
||||||
|
cli.cacheCount = 0
|
||||||
|
|
||||||
// Create buckets if not exist
|
// Create buckets if not exist
|
||||||
err = db.Update(func(tx *bolt.Tx) error {
|
err = db.Update(func(tx *bolt.Tx) error {
|
||||||
_, err := tx.CreateBucketIfNotExists([]byte(bucketPrefix))
|
_, err := tx.CreateBucketIfNotExists([]byte(bucketPrefix))
|
||||||
@ -48,7 +59,16 @@ func NewClient(serverURL string, folder string) (*Client, error) {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
_, err = tx.CreateBucketIfNotExists([]byte(bucketRetryJobs))
|
_, err = tx.CreateBucketIfNotExists([]byte(bucketRetryJobs))
|
||||||
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err = tx.CreateBucketIfNotExists([]byte(bucketURLCache))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@ -91,6 +111,20 @@ func NewClient(serverURL string, folder string) (*Client, error) {
|
|||||||
cli.prefix = prefix
|
cli.prefix = prefix
|
||||||
cli.gen = generation.NewGenerator(prefix)
|
cli.gen = generation.NewGenerator(prefix)
|
||||||
|
|
||||||
|
// load cache
|
||||||
|
_ = cli.db.View(func(tx *bolt.Tx) error {
|
||||||
|
b := tx.Bucket([]byte("url_cache"))
|
||||||
|
if b == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
c := b.Cursor()
|
||||||
|
for k, v := c.First(); k != nil && cli.cacheCount < cli.maxCacheSize; k, v = c.Next() {
|
||||||
|
cli.cacheMap[string(k)] = string(v)
|
||||||
|
cli.cacheCount++
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
|
||||||
// Load retry jobs from DB into channel
|
// Load retry jobs from DB into channel
|
||||||
go cli.loadRetryJobs()
|
go cli.loadRetryJobs()
|
||||||
|
|
||||||
@ -100,14 +134,68 @@ func NewClient(serverURL string, folder string) (*Client, error) {
|
|||||||
return cli, nil
|
return cli, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Shorten creates a short URL and sends it async to the central server
|
/*
|
||||||
func (c *Client) Shorten(longURL string) string {
|
Shorten
|
||||||
|
*/
|
||||||
|
|
||||||
|
type ShortenOpt func(*shortenOptions)
|
||||||
|
|
||||||
|
type shortenOptions struct {
|
||||||
|
useCache bool
|
||||||
|
}
|
||||||
|
|
||||||
|
func UseCache() ShortenOpt {
|
||||||
|
return func(opts *shortenOptions) {
|
||||||
|
opts.useCache = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *Client) Shorten(longURL string, opts ...ShortenOpt) string {
|
||||||
|
options := shortenOptions{}
|
||||||
|
for _, opt := range opts {
|
||||||
|
opt(&options)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check memory cache
|
||||||
|
if options.useCache {
|
||||||
|
c.cacheLock.RLock()
|
||||||
|
if shortID, ok := c.cacheMap[longURL]; ok {
|
||||||
|
c.cacheLock.RUnlock()
|
||||||
|
return shortID
|
||||||
|
}
|
||||||
|
c.cacheLock.RUnlock()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generate new ID
|
||||||
shortID := c.gen.NextID()
|
shortID := c.gen.NextID()
|
||||||
|
|
||||||
|
// Queue job
|
||||||
go c.enqueueJob(shortenJob{
|
go c.enqueueJob(shortenJob{
|
||||||
ID: shortID,
|
ID: shortID,
|
||||||
URL: longURL,
|
URL: longURL,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// Async store in cache
|
||||||
|
if options.useCache {
|
||||||
|
go c.addToCache(longURL, shortID)
|
||||||
|
}
|
||||||
|
|
||||||
return shortID
|
return shortID
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *Client) addToCache(longURL, shortID string) {
|
||||||
|
c.cacheLock.Lock()
|
||||||
|
if _, exists := c.cacheMap[longURL]; !exists && c.cacheCount < c.maxCacheSize {
|
||||||
|
c.cacheMap[longURL] = shortID
|
||||||
|
c.cacheCount++
|
||||||
|
}
|
||||||
|
c.cacheLock.Unlock()
|
||||||
|
|
||||||
|
// Async write to BoltDB
|
||||||
|
go func() {
|
||||||
|
_ = c.db.Update(func(tx *bolt.Tx) error {
|
||||||
|
b := tx.Bucket([]byte("url_cache"))
|
||||||
|
return b.Put([]byte(longURL), []byte(shortID))
|
||||||
|
})
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
@ -16,6 +16,7 @@ import (
|
|||||||
const (
|
const (
|
||||||
bucketPrefix = "prefix"
|
bucketPrefix = "prefix"
|
||||||
bucketRetryJobs = "retry_queue"
|
bucketRetryJobs = "retry_queue"
|
||||||
|
bucketURLCache = "url_cache"
|
||||||
dbFileName = "shorty_client.db"
|
dbFileName = "shorty_client.db"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user