Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Redis Stack for Application Modernization

You're reading from  Redis Stack for Application Modernization

Product type Book
Published in Dec 2023
Publisher Packt
ISBN-13 9781837638185
Pages 336 pages
Edition 1st Edition
Languages
Authors (2):
Luigi Fugaro Luigi Fugaro
Profile icon Luigi Fugaro
Mirko Ortensi Mirko Ortensi
Profile icon Mirko Ortensi
View More author details

Table of Contents (18) Chapters

Preface 1. Part 1: Introduction to Redis Stack
2. Chapter 1: Introducing Redis Stack 3. Chapter 2: Developing Modern Use Cases with Redis Stack 4. Chapter 3: Getting Started with Redis Stack 5. Chapter 4: Setting Up Client Libraries 6. Part 2: Data Modeling
7. Chapter 5: Redis Stack as a Document Store 8. Chapter 6: Redis Stack as a Vector Database 9. Chapter 7: Redis Stack as a Time Series Database 10. Chapter 8: Understanding Probabilistic Data Structures 11. Part 3: From Development to Production
12. Chapter 9: The Programmability of Redis Stack 13. Chapter 10: RedisInsight – the Data Management GUI 14. Chapter 11: Using Redis Stack as a Primary Database 15. Chapter 12: Managing Development and Production Environments 16. Index 17. Other Books You May Enjoy

Conventions used

There are a number of text conventions used throughout this book.

Code in text: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: “However, since Python version 3.3, a tool named virtualenv was integrated into Python’s standard library.”

A block of code is set as follows:

client = redis.Redis(host='127.0.0.1', port=6379,
username='<YOUR_USERNAME>',
password='<YOUR_PASSWORD>')
client.set("Redis", "Stack")
print(client.get("Redis"))

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

<dependency>
    <groupId>redis.clients</groupId>
    <artifactId>jedis</artifactId>
    <version>5.0.0</version>
</dependency>

Any command-line input or output is written as follows:

$ apt install python3.9-venv

Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: “The application prompts you first to establish a connection with a Redis database. Start this process by clicking on the ADD REDIS DATABASE button.”

Tips or important notes

Appear like this.

lock icon The rest of the chapter is locked
Next Chapter arrow right
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}