Skip to content

malwarebo/memcachex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Memcachex - Memcached Client for C++

Memcachex is a simple C++ project that demonstrates how to interact with a memcached server using the libmemcached library. It encapsulates memcached client functionality into a class and provides basic error handling.

Getting Started

Note: This was tested on MacOS only using Clang.

Prerequisites

Before using Memcachex, you need to have the libmemcached library installed on your system. Make sure you have the following prerequisites:

  • CMake (Version 3.10 or higher)
  • C++ compiler (supporting C++11 or above)
  • libmemcached is installed
  • pkg-config is installed

Installing libmemcached

MacOS

brew install libmemcached
brew install pkg-config

or

Please follow the official libmemcached documentation to install the library on your system: libmemcached Installation Guide

Building Memcachex

  1. Setup

    git clone https://github.com/malwarebo/memcachex.git
    cd memcachex
    mkdir build
    cd build
    cmake ..
    cmake --build .
  2. Usage After building the project, you can run the memcachex executable:

./memcachex

About

Implementation of libmemached.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published