Categorygithub.com/rocketblend/echo-http-cache
modulepackage
0.1.0
Repository: https://github.com/rocketblend/echo-http-cache.git
Documentation: pkg.go.dev

# README

echo-http-cache

Github tag Go Doc Go Report Card GitHub

This is a high performance Golang HTTP middleware for server-side application layer caching, ideal for REST APIs, using Echo framework.

It is simple, super fast, thread safe and gives the possibility to choose the adapter (memory, Redis, DynamoDB etc).

The memory adapter minimizes GC overhead to near zero and supports some options of caching algorithms (LRU, MRU, LFU, MFU). This way, it is able to store plenty of gigabytes of responses, keeping great performance and being free of leaks.

Note: Some tests are currently disabled as they weren't updated when the library was updated for use with echo.

Getting Started

Installation (Go Modules)

go get github.com/rocketblend/echo-http-cache

Usage

This is an example of use with the memory adapter:

package main

import (
    "fmt"
    "net/http"
    "os"
    "time"
    
    "github.com/rocketblend/echo-http-cache"
    "github.com/rocketblend/echo-http-cache/adapters/memory"
    "github.com/labstack/echo/v4"
)

func example(c echo.Context) {
   c.String(http.StatusOk, "Ok")
}

func main() {
    memcached, err := memory.NewAdapter(
        memory.AdapterWithAlgorithm(memory.LRU),
        memory.AdapterWithCapacity(10000000),
    )
    if err != nil {
        fmt.Println(err)
        os.Exit(1)
    }

    cacheClient, err := cache.NewClient(
        cache.ClientWithAdapter(memcached),
        cache.ClientWithTTL(10 * time.Minute),
        cache.ClientWithRefreshKey("opn"),
    )
    if err != nil {
        fmt.Println(err)
        os.Exit(1)
    }

    router := echo.New()
    router.Use(cacheClient.Middleware())
    router.GET("/", example)
    e.Start(":8080")
}

Example of Client initialization with Redis adapter:

import (
    "github.com/rocketblend/echo-http-cache"
    "github.com/rocketblend/echo-http-cache/adapters/redis"
)

...

    ringOpt := &redis.RingOptions{
        Addrs: map[string]string{
            "server": ":6379",
        },
    }
    cacheClient := cache.NewClient(
        cache.ClientWithAdapter(redis.NewAdapter(ringOpt)),
        cache.ClientWithTTL(10 * time.Minute),
        cache.ClientWithRefreshKey("opn"),
    )

...

Benchmarks

The benchmarks were based on allegro/bigache tests and used to compare it with the http-cache memory adapter.
The tests were run using an Intel i5-2410M with 8GB RAM on Arch Linux 64bits.
The results are shown below:

Writes and Reads

cd adapter/memory/benchmark
go test -bench=. -benchtime=10s ./... -timeout 30m

BenchmarkHTTPCacheMamoryAdapterSet-4             5000000     343 ns/op    172 B/op    1 allocs/op
BenchmarkBigCacheSet-4                           3000000     507 ns/op    535 B/op    1 allocs/op
BenchmarkHTTPCacheMamoryAdapterGet-4            20000000     146 ns/op      0 B/op    0 allocs/op
BenchmarkBigCacheGet-4                           3000000     343 ns/op    120 B/op    3 allocs/op
BenchmarkHTTPCacheMamoryAdapterSetParallel-4    10000000     223 ns/op    172 B/op    1 allocs/op
BenchmarkBigCacheSetParallel-4                  10000000     291 ns/op    661 B/op    1 allocs/op
BenchmarkHTTPCacheMemoryAdapterGetParallel-4    50000000    56.1 ns/op      0 B/op    0 allocs/op
BenchmarkBigCacheGetParallel-4                  10000000     163 ns/op    120 B/op    3 allocs/op

http-cache writes are slightly faster and reads are much more faster.

Garbage Collection Pause Time

cache=http-cache go run benchmark_gc_overhead.go

Number of entries:  20000000
GC pause for http-cache memory adapter:  2.445617ms

cache=bigcache go run benchmark_gc_overhead.go

Number of entries:  20000000
GC pause for bigcache:  7.43339ms

echo-http-cache memory adapter takes way less GC pause time, that means smaller GC overhead.

Roadmap

  • Fix broken tests from forked repository
  • Add new CI pipeine.
  • Update fork from main.
  • Implement new adapters.
  • Incorporate PR's from orginal repository into this repository.

Godoc Reference

License

echo-http-cache is released under the MIT License.

# Packages

No description provided by the author

# Functions

BytesToResponse converts bytes array into Response data structure.
ClientWithAdapter sets the adapter type for the HTTP cache middleware client.
ClientWithMethods sets the acceptable HTTP methods to be cached.
ClientWithRefreshKey sets the parameter key used to free a request cached response.
ClientWithRestrictedPaths sets the restricted HTTP paths for caching.
ClientWithTTL sets how long each response is going to be cached.
KeyAsString can be used by adapters to convert the cache key from uint64 to string.
NewClient initializes the cache HTTP middleware client with the given options.

# Structs

Client data structure for HTTP cache middleware.
Response is the cached response data structure.

# Interfaces

Adapter interface for HTTP cache middleware client.

# Type aliases

ClientOption is used to set Client settings.