https://github.com/litespeedtech/lsmcd
LiteSpeed Memcache Compatible Persistent HA replication Cache Server
https://github.com/litespeedtech/lsmcd
Last synced: about 1 year ago
JSON representation
LiteSpeed Memcache Compatible Persistent HA replication Cache Server
- Host: GitHub
- URL: https://github.com/litespeedtech/lsmcd
- Owner: litespeedtech
- License: gpl-3.0
- Created: 2016-02-10T20:37:30.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-05-15T11:49:51.000Z (about 2 years ago)
- Last Synced: 2025-04-01T12:54:37.573Z (about 1 year ago)
- Language: C++
- Size: 7.39 MB
- Stars: 39
- Watchers: 5
- Forks: 17
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
LSMCD
=======
Description
--------
LiteSpeed Memcached is LiteSpeed's persistent memcache compatible cache server supporting high availability replication. It's performance and interface are similar to the popular Memcached. Unlike Memcached, cache data is persistent on single or multiple box setups -- preserving all cache data through updates and in the event of server failure.
Compile
--------
- git clone https://github.com/litespeedtech/lsmcd.git or download project via "wget https://github.com/litespeedtech/lsmcd/archive/master.zip"
- cd lsmcd directory and run configure and make.
```
./fixtimestamp.sh
./configure CFLAGS=" -O3" CXXFLAGS=" -O3"
make
```
Install
--------
- install prerequisites, for centos, do
```
yum install autoconf automake zlib-devel openssl-devel expat-devel cyrus-sasl-devel
```
for Debian/Ubuntu, do
```
sudo apt-get install build-essential zlib1g-dev libexpat1-dev openssl libsasl2-dev
```
- cd dist, run "install.sh" so that lsmcd service is added.
- update the default configure "/usr/local/lsmcd/conf/node.conf".
There is example.conf under dist/conf, just replace with your testing IP.
- now start or stop it.
```
service lsmcd start/stop
```
Configuration Documentation
--------
Lsmcd configuration settings are different from memcached. For detail description, please [read](https://docs.litespeedtech.com/products/lsmcd/).