All Projects → geerlingguy → Ansible Role Memcached

geerlingguy / Ansible Role Memcached

Licence: mit
Ansible Role - Memcached

Projects that are alternatives of or similar to Ansible Role Memcached

Olric
Distributed cache and in-memory key/value data store. It can be used both as an embedded Go library and as a language-independent service.
Stars: ✭ 2,067 (+3727.78%)
Mutual labels:  database, cache, caching, memcached
Ansible Role Redis
Ansible Role - Redis
Stars: ✭ 176 (+225.93%)
Mutual labels:  ansible, cache, memcached, role
Scaffeine
Thin Scala wrapper for Caffeine (https://github.com/ben-manes/caffeine)
Stars: ✭ 195 (+261.11%)
Mutual labels:  cache, caching, performance
Ansible Role Haproxy
Ansible Role - HAProxy
Stars: ✭ 112 (+107.41%)
Mutual labels:  ansible, role, performance
Scrapbook
PHP cache library, with adapters for e.g. Memcached, Redis, Couchbase, APC(u), SQL and additional capabilities (e.g. transactions, stampede protection) built on top.
Stars: ✭ 279 (+416.67%)
Mutual labels:  cache, caching, memcached
Cachemanager
CacheManager is an open source caching abstraction layer for .NET written in C#. It supports various cache providers and implements many advanced features.
Stars: ✭ 2,049 (+3694.44%)
Mutual labels:  cache, caching, memcached
Simple Spring Memcached
A drop-in library to enable memcached caching in Spring beans via annotations
Stars: ✭ 185 (+242.59%)
Mutual labels:  cache, caching, memcached
Ansible Mysql Hardening
This Ansible role provides security configuration for MySQL.
Stars: ✭ 132 (+144.44%)
Mutual labels:  ansible, database, role
Awesome Wp Speed Up
Plugins and resources to speed up and optimize your WordPress site.
Stars: ✭ 375 (+594.44%)
Mutual labels:  database, caching, performance
Lada Cache
A Redis based, fully automated and scalable database cache layer for Laravel
Stars: ✭ 424 (+685.19%)
Mutual labels:  database, cache, caching
Libmc
Fast and light-weight memcached client for C++ / #python / #golang #libmc
Stars: ✭ 429 (+694.44%)
Mutual labels:  cache, caching, memcached
Sequelize Transparent Cache
Simple to use and universal cache layer for Sequelize
Stars: ✭ 137 (+153.7%)
Mutual labels:  cache, caching, memcached
Easycaching
💥 EasyCaching is an open source caching library that contains basic usages and some advanced usages of caching which can help us to handle caching more easier!
Stars: ✭ 1,047 (+1838.89%)
Mutual labels:  cache, caching, memcached
Ansible Role Postgresql
Ansible Role - PostgreSQL
Stars: ✭ 310 (+474.07%)
Mutual labels:  ansible, database, role
Bigcache
Efficient cache for gigabytes of data written in Go.
Stars: ✭ 5,304 (+9722.22%)
Mutual labels:  cache, caching, performance
Ansible Role Mysql
Ansible Role - MySQL
Stars: ✭ 826 (+1429.63%)
Mutual labels:  ansible, database, role
Wordpress Rest Cache
WordPress Plugin to lazy cache HTTP requests in database and update via cron.
Stars: ✭ 8 (-85.19%)
Mutual labels:  cache, performance
Cache Service Provider
A Cache Service Provider for Silex, using the doctrine/cache package
Stars: ✭ 23 (-57.41%)
Mutual labels:  cache, caching
Ansible Transmission
🕹 A TransmissionBT installation role for Ansible
Stars: ✭ 8 (-85.19%)
Mutual labels:  ansible, role
Weixinmpsdk
微信全平台 SDK Senparc.Weixin for C#,支持 .NET Framework 及 .NET Core、.NET 6.0。已支持微信公众号、小程序、小游戏、企业号、企业微信、开放平台、微信支付、JSSDK、微信周边等全平台。 WeChat SDK for C#.
Stars: ✭ 7,098 (+13044.44%)
Mutual labels:  cache, memcached

Ansible Role: Memcached

CI

An Ansible Role that installs Memcached on RedHat/CentOS or Debian/Ubuntu Linux.

Requirements

None.

Role Variables

Available variables are listed below, along with default values (see defaults/main.yml):

memcached_user: memcache

The user under which the Memcached daemon will run.

memcached_port: 11211
memcached_listen_ip: 127.0.0.1

The port and IP address (127.0.0.1 for localhost) on which Memcached will listen for requests.

memcached_memory_limit: 64
memcached_max_item_size: 1m
memcached_connections: 1024

Memcached limits. The maximum amount of RAM memcached will consume (64MB is the default), the memory-limit of a single item and the maximum number of simultaneous connections memcached will handle.

memcached_log_file: /var/log/memcached.log

The location of the memcached log file.

memcached_log_verbosity: ""

Normally memcached does not log anything. Change to "-v" to enable logging or to "-vv" for debug logging.

Dependencies

None.

Example Playbook

- hosts: cache
  roles:
    - { role: geerlingguy.memcached }

License

MIT / BSD

Author Information

This role was created in 2014 by Jeff Geerling, author of Ansible for DevOps.

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].