Questions tagged [amazon-elasticache]

Amazon ElastiCache is a web service that makes it easy to deploy, operate, and scale an in-memory cache in the cloud. Amazon ElastiCache improves the performance of web applications by allowing you to retrieve information from a fast, managed, in-memory caching system. The service simplifies and offloads the management, monitoring and operation of in-memory cache environments, enabling your engineering resources to focus on developing applications.

Amazon ElastiCache is a web service that makes it easy to deploy, operate, and scale an in-memory cache in the cloud. Amazon ElastiCache improves the performance of web applications by allowing you to retrieve information from a fast, managed, in-memory caching system, instead of relying entirely on slower disk-based databases. The service simplifies and offloads the management, monitoring and operation of in-memory cache environments, enabling your engineering resources to focus on developing applications. Using Amazon ElastiCache, you can not only improve load and response times to user actions and queries, but also reduce the cost associated with scaling web applications.

Amazon ElastiCache automates common administrative tasks required to operate a distributed cache environment. Using Amazon ElastiCache, you can add a caching layer to your application architecture in a matter of minutes via a few clicks of the AWS Management Console. Once a cache cluster is provisioned, Amazon ElastiCache automatically detects and replaces failed cache nodes, providing a resilient system that mitigates the risk of overloaded databases, which slow website and application load times. Through integration with Amazon CloudWatch monitoring, Amazon ElastiCache provides enhanced visibility into key performance metrics associated with your cache nodes. Amazon ElastiCache is protocol-compliant with Memcached, a widely adopted memory object caching system, so code, applications, and popular tools that you use today with your existing Memcached environments will work seamlessly with the service. As with all Amazon Web Services, there are no up-front investments required, and you pay only for the resources you use.

876 questions
0
votes
1 answer

Will a PECL package for PHP 5.4 work with 5.5?

I'm looking to install the Amazon ElastiCache Memcached Cluster Client so I can take advantage of autodiscovery of cache nodes. Unfortunately, it looks like they only available options are Java PHP 5.3 (64-bit Linux) PHP 5.3 (32-bit Linux) PHP 5.4…
Brad Dwyer
  • 6,305
  • 8
  • 48
  • 68
0
votes
2 answers

How do I kill an Elasticache node

I have set up a new AWS EC2 environment with Elasticache Redis. I'd like to test failure scenarios. Does anybody know how to Kill: A cluster A node ?
RobD
  • 1,695
  • 2
  • 24
  • 49
0
votes
2 answers

Manage AWS redis from Windows

I've setup an AWS Elsticache (redis) which i want to be able to administer. Flush, delete entries etc from a Windows machine. I've been googling this an havent been able to find any solutions. Is this even possible?
Allan Vraa
  • 219
  • 3
  • 9
0
votes
2 answers

AWS ElastiCache c# error

I haven't been able to find many decent examples of how to use AWS Elasticache from c#. http://jacace.wordpress.com/2013/02/24/using-the-amazon-elasticache-in-c/ suggested the BeIT library, which I am trying. Here's my code so far: string…
mcmillab
  • 2,752
  • 2
  • 23
  • 37
0
votes
1 answer

Data modeling for nosql database for Social Networking site

I am developing one social networking website. Right now I am using mysql for data storage. Now I have to move on nosql database (I prefer ElasticCache or DynamoDb (amazon service) ). But I am confusing about data modeling. In mysql I have following…
0
votes
1 answer

AWS Elasticache + set()

I can get .set() to work when interacting with Elasticache if I use the compression & time settings (third and forth settings) $memcached = new Memcached(); $memcached->setOption(Memcached::OPT_CLIENT_MODE, Memcached::DYNAMIC_CLIENT_MODE); …
Adam
  • 19,932
  • 36
  • 124
  • 207
0
votes
1 answer

What does the memcached return code 44120 mean?

I am getting a return code from my memcached cluster of value 44120, which is breaking my memcached-northscale ruby client because it does not know what this return code value means. Can anyone shed light on what this code means and which ruby…
esilver
  • 27,713
  • 23
  • 122
  • 168
0
votes
2 answers

How to does Elasticache syntax relate to Memcache syntax (using PHP)?

After installing memcache on my EC2 Linux instance using this: :~$ sudo apt-get install memcached php5-memcache I can immediately do this: $memcache = new Memcache; $memcache->connect('localhost', 11211); $array_result=$this->db->query("SELECT *…
tim peterson
  • 23,653
  • 59
  • 177
  • 299
-1
votes
1 answer

AWS Lambda cant find address in Route 53

My team member wrote a lambda function that connects to a mem cache in AWS ElastiCache. memjs is a npm package. const memjs = require("memjs"); const client = memjs.Client.create(`${CACHE_ADDRESS}:${CACHE_PORT}`); where CACHE_ADDRESS / CACHE_PORT…
Travis
  • 657
  • 6
  • 24
-1
votes
1 answer

How to set the Description for an AWS CacheCluster using CloudFormation?

I would like to set the Description for a Redis ElastiCache CacheCluster as part of a CloudFormation template - how is this achieved? The Description value is visible in the AWS console Cluster details section for the cache cluster and I can modify…
Edward Moffett
  • 958
  • 1
  • 13
  • 25
-1
votes
2 answers

Delete data in Elasticache Redis after 2 days

I'm using Redis to store json messages, which need to be consumed by other services. I want the data to store in Redis for 2 days and the data need to be deleted after the 2 days. Is there any approach to achieve it?
-1
votes
1 answer

Different Behavior Deploying AWS Lambda Standalone vs within an Application Stack

Hi everybody and thanks for taking time to look at my issue/question. I am getting different results when deploying my AWS Lambda stand-alone versus within an Application Stack. I'm trying to connect to AWS Elasticache Redis from within my Lambda. I…
-1
votes
1 answer

What is "AUTH" in Redis and how to use it?

What is "AUTH" in Redis and how to use and when to use it. It will be helpful if you provide a few examples.
Raghavendra
  • 519
  • 1
  • 11
  • 25
-1
votes
2 answers

Redis cli unable to connect to AWS ElastiCache due to redis memory usage but application still able to communicate

Is it possible that redis cli is given less priority to connect when memory consumption is high but application is allowed to communicate? I am unable to connect via cli so can't check anything. Also, don't have the redis server access. We connect…
-1
votes
1 answer

How to store data into cache?

I am trying to setup AWS elasticache (memcache) in my app with Nodejs. I wanted to store json object to the cache and did elastic.connect().then(function(instance){ var profile = { 'name':'Rohit kumar', 'location':'Delhi', …
Jwqq
  • 997
  • 4
  • 14
  • 22
1 2 3
58
59