What is Redis?

Redis is an in-memory data structure store, used as a distributed, in-memory key–value database, cache and message broker, with optional durability. Redis supports different kinds of abstract data structures, such as strings, lists, maps, sets, sorted sets, HyperLogLogs, bitmaps, streams, and spatial indices

https://redis.io/

What is Lambda?

AWS Lambda is an event-driven, serverless computing platform provided by Amazon as a part of Amazon Web Services. It is a computing service that runs code in response to events and automatically manages the computing resources required by that code. It was introduced in November 2014.

https://docs.aws.amazon.com/lambda/latest/dg/welcome.html

AWS Error connecting : How do I change the VPC for an Amazon RDS DB instance?

Having trouble connecting to a Aurora DB in EC2 AWS server.
You cannot change a VPS after setting up a Database, this is explicitly stated when creating a database. Below you can read up more on VPC’s and RDS’s
https://aws.amazon.com/premiumsupport/knowledge-center/change-vpc-rds-db-instance/

Dynamically show and hide TR elements by index
    $(document).on("click","tr",function(){
        var projectId = $(this).attr("data-projectId");

        $(this).nextAll("tr:eq(0)").toggle(500);
        $(this).nextAll("tr:eq(1)").toggle(500);
    });

Search

Your Favourite Posts

  • Your favorites will be here.

Latest Content

© Garth Baker 2024 All rights reserved.

Pin It on Pinterest

Share This