I am interested in using Google's newly released memorystore with Redis for the new features on my app. However, I would still want my old code that use memcache to run without any changes. Is it possible to run memcache alongside memorystore? Or, would I have to completely migrate to memorystore to use it?
Can I use Google App Engine's memcache service alongside the newly released memorystore with Redis?
170 views Asked by Harshit Agarwal At
1
There are 1 answers
Related Questions in GOOGLE-APP-ENGINE
- Deployment through app engine, cloud sql database, problem connecting with server code, doesn't connect
- Jetty 12 idle timeout limited to 30 seconds when upgrading to Java 21 in Google App Engine Standard Environment
- Unable to deploy to GAE from Github Actions
- Migrating Google App Engine - Eclipse Java 8
- How to use Oauth in order to log‑in on .googleapis.com on almost any arbitrary endpoints domains from the web browser?
- Running gcloud app deploy and getting PERMISSION_DENIED 'compute.regions.get', despite having Owner and Compute admin permissions
- Spring security CORS configuration not working after deploying to App Engine
- Google App Engine: manual scaling with one instance suddenly created multiple instances
- gcloud.app.deploy Error Response: [13] Failed to create cloud build: invalid bucket
- gcloud.app.deploy Error Response: [13] default Cloud Build service account or user-specified service account does not have access to the bucket
- GCP Java dev_appserver Can't make API call memcache.Get in a thread that is neither the original request thread nor a thread created by ThreadManager
- How to correlate and aggregate logs in Google App Engine Python 3?
- App Engine Python3 db / ndb & eventual consistency
- How do I connect to Google Cloud mySQL from App Engine using Django-Environ?
- How to deploy my fast api with llama 2 on app engine
Related Questions in GOOGLE-CLOUD-PLATFORM
- Why do I need to wait to reaccess to Firestore database even though it has already done before?
- Unable to call datastore using GCP service account key json
- Troubleshooting Airflow Task Failures: Slack Notification Timeout
- GoogleCloud Error: Not Found The requested URL was not found on this server
- Kubernetes cluster on GCE connection refused error
- Best way to upload images to Google Cloud Storage?
- Permission 'storage.buckets.get' denied on resource (or it may not exist)
- Google Datastream errors on larger MySQL tables
- Can anyone explain the output of apache-beam streaming pipeline with Fixed Window of 60 seconds?
- Parametrizing backend in terraform on gcp
- Nonsense error using a Python Google Cloud Function
- Unable to deploy to GAE from Github Actions
- Assigned A record for Subdomain in Cloud DNS to Compute Engine VM instance but not propagated/resolved yet
- Task failure in DataprocCreateClusterOperator when i add metadata
- How can I get the long running operation with google.api_core.operations_v1.AbstractOperationsClient
Related Questions in GOOGLE-APP-ENGINE-PYTHON
- Reasons for "Exceeded soft memory limit of 256 MiB..."
- Can't read models from cloud storage, so the app can't predict images
- Why does dev_appserver.py exit without throwing errors?
- Dash app deployed on Google App Engine standard continuously refreshing
- How to measure available memory in a Google App Engine standard instance?
- ndb datastore query fetch_page always returns no cursor and more = false
- get_serving_url silently fails with django-storages, app engine, python 3.x
- Python - Memory limit exceeded during Google App Engine deployment
- Google Cloud Client for Cloud Storage with App Engine Standard (Python 2.7)
- Need to use the "Google-cloud-ndb" library in Python 2.7 version
- Flask-login users are being logged out at random when app is live (not when run local)
- Google Cloud Storage generate upload/download URL fails with unicode characters in blobname
- `vendor.add` doesn't expose dependencies to dev_appserver.py
- How to prevent Google Cloud Engine to run multiple concurrent instances?
- App Engine Flask App: Process terminated because the request deadline was exceeded. (Error code 123)
Related Questions in GOOGLE-CLOUD-MEMORYSTORE
- Getting "Unknown Reply" while connecting GCP redis instance from jedis java client
- How should I Handle IAM Authentication Token Expiration in Node.js for Memorystore Redis
- Rotating Redis TLS Certificates Without Downtime
- How do I set/get values in Memcached MemoryStore from Cloud functions?
- Access Google Cloud Memorystore from other project / network
- Cloud Functions are unable to establish a connection with the Memorystore Redis instance
- Redis (via GCP Memorystore) is out of memory although maxmemory-policy is allkeys-lru
- Unable to connect to GCP Redis Memory store from Cloud run spring boot application - although VPC is configured and both are created in same region
- Google Cloud Dataflow's Code Coverage on the new code is not passing the threshold in SonarQube after Java 17 upgrade
- Is direct data ingestion from pub/sub to memorystore possible?
- Can't connect to Redis instance hosted by GCP Memotystore to my AWS EC2
- getting EOFExceptions in streaming pipeline to insert data into memoystore redis instance with TLS enabled using dataflow pipeline
- Arbitrary io.lettuce.core.RedisCommandTimeoutException in Lettuce Redis client
- Connecting to GCP Redis instance with AUTH & TLS enabled using cloud functions (python)
- Error while disabling Redis API in Google Cloud
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Although it is recommended to migrate from Python2 to Python3 and switch from Memcache to Memorystore solution you can still use both I believe. You will need to setup VPC connector in order to be able to connect to Memorystore from App Engine and install required dependancies. The step-by-step process is described here