Les commandes de cache dans WP CLI.

Tous les snippets pour gérer le cache dans WordPress grâce aux commandes CLI.

Remplacer une valeur d’un objet de cache

BASH
                    # wp cache replace {key} {value} {group}
wp cache replace "form_id" 1337 "forms"
                

Vider un objet de cache

BASH
                    # wp cache flush {key} {group}
wp cache flush "form_id" "forms"
                

Supprimer un objet de cache

BASH
                    # wp cache delete {key} {group}
wp cache delete "form_id" "forms"
                

Incrémenter une valeur dans un objet de cache

BASH
                    # wp cache incr {key} {offset} {group}
wp cache incr "form_id" 1337 "forms"
                

Décrémenter une valeur dans un objet de cache

BASH
                    # wp cache decr {key} {offset} {group}
wp cache decr "form_id" 1337 "forms"
                

Obtenir un objet en cache

BASH
                    # wp cache get {key} {group}
wp cache get "form_id" "forms"
                

Ajouter une valeur dans un objet en cache

BASH
                    # wp cache set {key} {value} {group} {duration}
wp cache set "form_id" 1337 "forms" 300
                

Ajouter un objet en cache

BASH
                    # wp cache add {key} {value} {group} {duration}
wp cache add "form_id" 1337 "forms" 300