⚡
LightningUserVault
  • Introduction
  • GETTING STARTED
    • Quickstart Guide
      • Docker Deployment
      • Local Deployment
    • Server Commands
  • Architecture
    • Overview
    • API Server
    • Data Storage:
      • Key-Value Databases
        • Pebbel DB
      • SQL Databases
        • PostgreSQL
    • Caching Mechanism:
      • MEMCACHE
  • Additional Features
    • Swagger
    • Postman Collection
    • Prometheus
    • Grafana
  • Releases
  • Contribution
Powered by GitBook
On this page
  1. Architecture
  2. Caching Mechanism:

MEMCACHE

PreviousCaching Mechanism:NextSwagger

Last updated 1 year ago

Memcache is a high-performance, distributed memory object caching system. Its primary goal? To speed up dynamic web applications by alleviating database load.

  1. Go Library: Dive into the technicalities and explore the Go library we've integrated for Memcache

  2. Memcache Server: Interested in the core server that powers this magic? Check it out .

🛠️ Configuration Flags:

  • ENABLE_CACHE: Toggle caching on or off. By default, it's set to true. If you set it to false, the subsequent flags won't come into play.

  • CACHE_TYPE: Specifies the caching mechanism. For Memcache, set it to MEMCACHE.

  • MEMCACHE_ADDRESS: Determines where the Memcache server resides. By default, it's memcached:11211.

gomemcache
here