community.general.memcached (8.5.0) — cache

Use memcached DB for cache

Authors: Unknown (!UNKNOWN)

Install collection

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


Add to requirements.yml

  collections:
    - name: community.general
      version: 8.5.0

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
    elements: string
    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