Redis เป็น Open Source ที่ใช้ในการเก็บข้อมูลแบบ In-Memory Data Structure Store ใช้เก็บข้อมูลเชิงโครงสร้าง เช่น String, Hash, List, Set, Sort Set ในลักษณะของ Database, Cache และ Message Broker สามารถทำ Replication, Lua Scripting, LRU Eviction, Transaction และ On-Disk Persistence นอกจากนี้ยังสามารถทำ HA ผ่าน Redis Sentinel และ Automaitc Partitioning ด้วย Redis Cluster
Install
- ทำการ Update และ Upgrade
# apt-get update && apt-get upgrade -y
- ติดตั้ง Package
# apt-get install redis-server -y
- ทำการแก้ไขไฟล์ /etc/redis/redis.conf
# vi /etc/redis/redis.conf
supervised systemd
- ทำการ Start Service Redis
# service redis-server start
- ทำการ Connect Redis ด้วย Redis-cli
# redis-cli
- ทำการทดสอบ Redis
127.0.0.1:6379> ping
PONG
127.0.0.1:6379> set web_key codeinsane
OK
127.0.0.1:6379> get web_key
"codeinsane"
127.0.0.1:6379> del web_key
(integer) 1
- ทำการแสดงข้อมูล Redis เพิ่มเติม
# redis-cli info
# redis-cli info stats
# redis-cli info server
อ่านเพิ่มเติม : https://bit.ly/2zhK4E3
Leave a Reply