GCP - Memorystore Enum

Support HackTricks

Memorystore

RedisMemcached를 위한 확장 가능하고 안전하며 고가용성의 인메모리 서비스로 지연 시간을 줄입니다. 자세히 알아보기.

# Memcache
gcloud memcache instances list --region <region>
gcloud memcache instances describe <INSTANCE> --region <region>
# You should try to connect to the memcache instances to access the data

# Redis
gcloud redis instances list --region <region>
gcloud redis instances describe <INSTACE> --region <region>
gcloud redis instances export gs://my-bucket/my-redis-instance.rdb my-redis-instance --region=us-central1
HackTricks 지원하기

Last updated