community.general.memcached (0.2.1) — cache

Use memcached DB for cache

Authors: unknown

Install collection

Install with ansible-galaxy collection install community.general:==0.2.1


Add to requirements.yml

  collections:
    - name: community.general
      version: 0.2.1

Description

This cache uses JSON formatted, per host records saved in memcached.


Requirements

Inputs

    
_uri:
    default:
    - 127.0.0.1:11211
    description:
    - List of connection information for the memcached DBs
    env:
    - name: ANSIBLE_CACHE_PLUGIN_CONNECTION
    ini:
    - key: fact_caching_connection
      section: defaults
    type: list

_prefix:
    default: ansible_facts
    description: User defined prefix to use when creating the DB entries
    env:
    - name: ANSIBLE_CACHE_PLUGIN_PREFIX
    ini:
    - key: fact_caching_prefix
      section: defaults

_timeout:
    default: 86400
    description: Expiration timeout in seconds for the cache plugin data. Set to 0 to
      never expire
    env:
    - name: ANSIBLE_CACHE_PLUGIN_TIMEOUT
    ini:
    - key: fact_caching_timeout
      section: defaults
    type: integer