All Projects → ananthakumaran → Memcachex

ananthakumaran / Memcachex

Licence: mit
Memcached client for Elixir

Programming Languages

elixir
2628 projects

Labels

Projects that are alternatives of or similar to Memcachex

rust-memcache
memcache client for rust
Stars: ✭ 106 (+211.76%)
Mutual labels:  memcache
memcache
Node.js memcached client with the most efficient ASCII protocol parser
Stars: ✭ 26 (-23.53%)
Mutual labels:  memcache
Middleware development learning
中间件、高性能服务器、分布式存储等(redis、memcache、nginx、大容量redis pika、rocksdb、mongodb、wiredtiger存储引擎、高性能代理中间件)二次开发、性能优化,逐步整理文档说明并配合demo指导--每周末定时更新2-3篇技术文章及程序demo--(技术交流QQ群:568892619)
Stars: ✭ 449 (+1220.59%)
Mutual labels:  memcache
easy-extends
一个简单快速安装PHP扩展的程序--最简单的方法就是使用Linux
Stars: ✭ 78 (+129.41%)
Mutual labels:  memcache
go-elasticache
Thin abstraction over the Memcache client package gomemcache (https://github.com/bradfitz/gomemcache) allowing it to support AWS ElastiCache cluster nodes
Stars: ✭ 15 (-55.88%)
Mutual labels:  memcache
memcached
Memcached Operator for Kubernetes
Stars: ✭ 18 (-47.06%)
Mutual labels:  memcache
Ninja Mutex
Mutex implementation for PHP
Stars: ✭ 180 (+429.41%)
Mutual labels:  memcache
Xmemcached
High performance, easy to use multithreaded memcached client in java.
Stars: ✭ 715 (+2002.94%)
Mutual labels:  memcache
cachegrand
cachegrand is an open-source fast, scalable and secure Key-Value store, also fully compatible with Redis protocol, designed from the ground up to take advantage of modern hardware vertical scalability, able to provide better performance and a larger cache at lower cost, without losing focus on distributed systems.
Stars: ✭ 87 (+155.88%)
Mutual labels:  memcache
Ring
Python cache interface with clean API and built-in memcache & redis + asyncio support.
Stars: ✭ 404 (+1088.24%)
Mutual labels:  memcache
memcache.php
An APC-like stats/info page for your memcached servers.(unix socket support)
Stars: ✭ 20 (-41.18%)
Mutual labels:  memcache
akaash-rest-api
Akaash: A restful API template built with PHP driven by flight micro-framework
Stars: ✭ 17 (-50%)
Mutual labels:  memcache
ansible-roles
Library of Ansible plugins and roles for deploying various services.
Stars: ✭ 14 (-58.82%)
Mutual labels:  memcache
memcache.php
Visibility for your memcache servers.
Stars: ✭ 54 (+58.82%)
Mutual labels:  memcache
Pymemcache
A comprehensive, fast, pure-Python memcached client.
Stars: ✭ 552 (+1523.53%)
Mutual labels:  memcache
Hfish
安全、可靠、简单、免费的企业级蜜罐
Stars: ✭ 2,977 (+8655.88%)
Mutual labels:  memcache
mdserver-web
Simple Linux Panel
Stars: ✭ 1,064 (+3029.41%)
Mutual labels:  memcache
Gocache
☔️ A complete Go cache library that brings you multiple ways of managing your caches
Stars: ✭ 775 (+2179.41%)
Mutual labels:  memcache
Php Memcache Dll
PHP-memcache-dll
Stars: ✭ 588 (+1629.41%)
Mutual labels:  memcache
Pecl Memcache
PHP Extension - Memcache module with support of newer PHP 7.x and PHP 8.x
Stars: ✭ 311 (+814.71%)
Mutual labels:  memcache

Memcache

Hex.pm

Memcached client for Elixir

Installation

defp deps() do
  [{:memcachex, "~> 0.4"}]
end

Overview

Memcachex comes with two kinds of API, a high level one named Memcache which provides functions to perform most of the common usecases and a low level one named Memcache.Connection which provides a less restrictive API. See the documentation for more information

Example

{:ok, pid} = Memcache.start_link()
{:ok} = Memcache.set(pid, "hello", "world")
{:ok, "world"} = Memcache.get(pid, "hello")

See test folder for further examples.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].