Skip to content

Latest commit

 

History

History
64 lines (53 loc) · 1.86 KB

README.md

File metadata and controls

64 lines (53 loc) · 1.86 KB

📖 ALX Backend

📃 Topics Covered

  1. Pagination
  2. Caching
  3. i18n
  4. Queuing System in JavaScript

🔧 Project Setup

# Create project directory and README.
mkdir ./alx-backend/
touch ./alx-backend/README.md
cd alx-backend

# Initialize repository.
git init
git add .
git commit -m 'first commit'
git remote add origin <REMOTE_URL>
git push

💻 Projects

This project focuses on pagination, which involves breaking down large amounts of data into smaller, more manageable chunks that can be delivered to clients in a structured way.

🔧 Project Setup

# Create project directory and README.
mkdir ./0x00-pagination/
touch ./0x00-pagination/README.md
cd 0x00-pagination

👉 Go to project

The project revolves around caching, which entails storing frequently requested data in a temporary storage location to serve subsequent requests for the same data more quickly and efficiently.

🔧 Project Setup

# Create project directory and README.
mkdir ./0x01-caching/
touch ./0x01-caching/README.md
cd 0x01-caching

👉 Go to project

Learning Objectives:

  • Setting up a Redis server locally
  • Executing basic operations with the Redis client
  • Utilizing a Redis client with Node.js for fundamental operations
  • Storing hash values in Redis
  • Managing asynchronous operations with Redis
  • Implementing Kue as a queue system
  • Developing a basic Express app interacting with a Redis server
  • Constructing a basic Express app interacting with a Redis server and queue.

👉 Go to project

👨 Author

This project was completed by Daniel Andarge.