# GCP - Enumeración de Memorystore {{#include ../../../banners/hacktricks-training.md}} ## Memorystore Reduce la latencia con un servicio en memoria escalable, seguro y altamente disponible para [**Redis**](https://cloud.google.com/sdk/gcloud/reference/redis) y [**Memcached**](https://cloud.google.com/sdk/gcloud/reference/memcache). Aprende más. ```bash # Memcache gcloud memcache instances list --region gcloud memcache instances describe --region # You should try to connect to the memcache instances to access the data # Redis gcloud redis instances list --region gcloud redis instances describe --region gcloud redis instances export gs://my-bucket/my-redis-instance.rdb my-redis-instance --region=us-central1 ``` {{#include ../../../banners/hacktricks-training.md}}