Redis is an open source, BSD licensed, advanced in-memory key-value store where keys can contain data structures such as strings, hashes, lists, sets, and sorted sets.
Redis Can be used as Database, a Caching layer or a Message broker. There are two ways to install Redis under Ubuntu Linux.
1. using apt-get install
—————————————————-
$ sudo apt-get install redis-server
2 with following commands:
————————————————————-
$ sudo apt-get update
$ sudo apt-get install build-essential tcl
$ mkdir redis && cd redis
$ wget
$ tar xzf redis-4.0.0.tar.gz
$ cd redis-4.0.0
$ make
$ make test
$ sudo make install
★★★Top Online Courses From ProgrammingKnowledge ★★★
Python Programming Course ➡️ ⚫️
Java Programming Course ➡️ ⚫️
Bash Shell Scripting Course ➡️ ⚫️
Linux Command Line Tutorials ➡️ ⚫️
C Programming Course ➡️ ⚫️
C++ Programming Course ➡️ ⚫️
PHP Programming Course ➡️ ⚫️
Android Development Course ➡️ ⚫️
C# Programming Course ➡️ ⚫️
JavaFx Programming Course ➡️ ⚫️
NodeJs Programming Course ➡️ ⚫️
Jenkins Course For Developers and DevOps ➡️ ⚫️
Scala Programming Tutorial Course ➡️ ⚫️
Bootstrap Responsive Web Design Tutorial ➡️ ⚫️
MongoDB Tutorial Course ➡️ ⚫️
QT C++ GUI Tutorial For Beginners ➡️
★★★ Online Courses to learn ★★★
Data Science – |
Machine Learning –
Artificial Intelligence – |
Data Analytics with R Certification Training-
DevOps Certification Training –
AWS Architect Certification Training –
Java, J2EE & SOA Certification Training –
AI & Deep Learning with TensorFlow –
Big Data Hadoop Certification Training-
AWS Architect Certification Training –
Selenium Certification Training –
Tableau Training & Certification –
Linux Administration Certification Training-
★★★ Follow ★★★
My Website –
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This help support the channel and allows us to continue to make videos like this. Thank you for the support!
Nguồn: https://codeigniterbrasil.com
Xem thêm bài viết khác: https://codeigniterbrasil.com/lap-trinh-php/
Xem thêm Bài Viết:
- MDM là gì??? – Làm thế nào để tắt được MDM trên Macbook | Mẹo Vặt Macbook
- Người lao động nghỉ bị trừ lương || Tư vấn luật lao động
- Learn Emmet In 15 Minutes – Double Your HTML Coding Speed
- Giang Hồ Thanh Toán Nhau Trên Phố – Tập 4 – Giang Hồ Bắn Giết Nhau Trên Đường | Big Bang
- Lập trình Android A-Z – Bài 159: Fragment Create and add XML
Thanks a lot bro!! keep up !!
Thank you very much for detailed steps
Thanks sir, its very helpful
Thank you!! This is very helpful
Its very much helpful. Thanks !!!
You're awesome! Thanks a lot, mate 😀
Nice Thanks.
Hi, I tried sending some commands from java to the server, but whenever I do it, they send me this message "redis.clients.jedis.exceptions.JedisConnectionException: java.net.ConnectException: Connection refused: connect" That means I need to set the server to listen to the requests from Java. How can I do this?