Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

343 total results found

Redis Publish - Subscribe

Redis Redis Basics

Redis Pub / Sub được áp dụng trong các hệ thống cần gửi/nhận bản tin message nơi sender (publisher) gửi message trong khi receiver (subscriber) nhận được chúng. Liên kết mà các message được chuyển được gọi là kênh.Trong Redis, khách hàng có thể subscribe bất k...

Redis Pipelining - Thực thi nhiều lệnh đồng thời từ Client

Redis Redis Advanced

Redis Pipelining được sử dụng khi bạn cần gửi nhiều câu lệnh tới server trong một yêu cầu. Ví dụ: $(echo -en "PING\r\n SET tutorial redis\r\nGET tutorial\r\nINCR visitor\r\nINCR visitor\r\nINCR visitor\r\n"; sleep 10) | nc localhost 6379 +PONG +OK r...

Redis Persist command - Lệnh xóa thiết lập thời gian hết hạn của Key trong Redis

Redis Redis Key command

Redis Persist command được sử dụng để xóa một thiết lập expire của key. Return value: Integer value: 1, nếu timeout được xóa khỏi thiết lập của key. 0, nếu key không tồn tại hoặc không có thiết lập timeout cho key. Syntax: redis 127.0.0.1:6379> PERS...

Redis Move command - Lệnh move Key sang database khác trong Redis

Redis Redis Key command

Redis MOVE command được sử dụng để move một key từ database hiện tại sang một database khác. Return Value: Integer value: 1, nếu key được move thành công. 0, nếu key không được move. Syntax: redis 127.0.0.1:6379> MOVE KEY_NAME DESTINATION_DATABASE ...

Redis Keys command - Lệnh tìm kiếm gần đúng theo Key trong Redis

Redis Redis Key command

Redis Keys command được sử dụng để tìm kiếm key theo pattern. Return Value: Danh sách (Array) các key là trùng với pattern Syntax: redis 127.0.0.1:6379> KEYS PATTERN Ví dụ: redis 127.0.0.1:6379> SET tutorial1 redis OK redis 127.0.0.1:6379> SET...

Redis Pexpireat command - Lệnh thiết lập thời gian hết hạn của Key trong Redis

Redis Redis Key command

Redis Pexpireat command được sử dụng để thiết lập thời gian hết hạn của một key được tính theo Unix timestamp miliseconds. Sau thời gian này, key sẽ không còn tồn tại trên Redis. Return Value Integer value: 1, nếu thời gian timeout được thiết lập cho key. ...

Redis Pexpire command - Lệnh thiết lập thời gian hết hạn của Key trong Redis

Redis Redis Key command

Redis Pexpire command được sử dụng để thiết lập thời gian hết hạn của một key (tính theo miliseconds). Sau thời gian này, key sẽ không còn tồn tại trên Redis. Return Value Integer value: 1, nếu thời gian timeout được thiết lập cho key. 0, nếu key không tồ...

Redis Expireat command - Lệnh thiết lập thời gian hết hạn của Key trong Redis

Redis Redis Key command

Redis Expireat command được sử dụng để thiết lập thời gian hết hạn của một key được tính theo Unix timestamp. Sau thời gian này, key sẽ không còn tồn tại trên Redis. Return Value Integer value: 1, nếu thời gian timeout được thiết lập cho key. 0, nếu key k...

Redis Expire command - Lệnh thiết lập thời gian hết hạn của Key trong Redis

Redis Redis Key command

Redis Expire command được sử dụng để thiết lập thời gian hết hạn của một key. Sau thời gian này, key sẽ không còn tồn tại trên Redis. Return Value Integer value: 1, nếu thời gian timeout được thiết lập cho key. 0, nếu key không tồn tại hoặc thời gian time...

Redis Client Connection - Quản lý kết nối từ Client

Redis Redis Advanced

Redis chấp nhận các kết nối từ client theo giao thức TCP socket. Khi kết nối từ client mới được chấp nhận, các thao tác sau được thực hiện: Client socket được đặt ở trạng thái non-blocking do Redis sử dụng ghép kênh (multiplexing) và non-blocking I/O TCP_NO...

Redis Scripting

Redis Redis Basics

Redis scripting được sử dụng để thực thi các script bằng thông dịch Lua (Lua interpreter). Nó được tích hợp vào Redis bắt đầu từ phiên bản 2.6.0. Lệnh được sử dụng cho scripting là lệnh EVAL. Cú pháp: redis 127.0.0.1:6379> EVAL script numkeys key [key ......

Redis Benchmarks - Đo hiệu năng của Redis

Redis Redis Advanced

Redis benchmark là công cụ để thực hiện đo tốc độ xử lý đồng thời của Redis database. Cú pháp: redis-benchmark [option] [option value] Ví dụ: Thực hiện đồng thời 100000 lệnh redis-benchmark -n 100000 PING_INLINE: 141043.72 requests per second PING_BU...

Redis Security - Bảo mật trong Redis database

Redis Redis Advanced

Redis database có cơ chế bảo mật xác thực khi client kết nối và thực thi lệnh trên Redis. Để bật tính năng bảo mật, bạn cần thiết lập mật khẩu trong config file Kiểm tra cấu hình xác thực: 127.0.0.1:6379> CONFIG get requirepass 1) "requirepass" 2) "" ...

Redis backup - Tạo bản backup trong Redis

Redis Redis Advanced

Backup Redis data Sử dụng Redis SAVE command để thực hiện tạo một bản backup cho Redis Cú pháp: 127.0.0.1:6379> SAVE OK Thực thi command này sẽ tạo 1 file dump.rdb trong thư mục Redis. Restore Redis Data Để thực hiện khôi phục Redis data, move fil...

Redis Exists command - Kiểm tra Key đã tồn tại trong Redis

Redis Redis Key command

Redis EXISTS command được sử dụng để kiểm tra xem một key đã tồn tại hay chưa Return Value Integer value: 1, nếu key đã tồn tại. 0, nếu key không tồn tại. Syntax: redis 127.0.0.1:6379> EXISTS KEY_NAME Ví dụ: redis 127.0.0.1:6379> EXISTS tutoria...

Redis Dump command - Lệnh Dump trong Redis

Redis Redis Key command

Redis DUMP command được sử dụng để trả về serialized version của giá trị được lưu trữ bởi key. Return value: Serialized value (String) Cú pháp: redis 127.0.0.1:6379> DUMP KEY_NAME Ví dụ: # redis 127.0.0.1:6379> SET tutorialspoint redis OK # red...

Redis Del command - Xóa Key trong Redis

Redis Redis Key command

Redis DEL command được sử dụng để xóa một bản ghi theo key đã tồn tại. Return Value: Số bản ghi (key) đã được xóa. Cú pháp: redis 127.0.0.1:6379> DEL KEY_NAME Ví dụ: # redis 127.0.0.1:6379> SET tutorialspoint redis OK # redis 127.0.0.1:6379>...

Redis Server command - Lệnh quản lý Redis

Redis Redis Basics

Redis server command được sử dụng để quản lý Redis server. Ví dụ; redis 127.0.0.1:6379> INFO # Server redis_version:2.8.13 redis_git_sha1:00000000 redis_git_dirty:0 redis_build_id:c2238b38b1edb0e2 redis_mode:standalone os:Linux 3.5.0-48-g...

Redis Connection command

Redis Redis Basics

Redis connection là command cơ bản được sử dụng để quản lý các kết nối của client tới Redis server. Ví dụ: redis 127.0.0.1:6379> AUTH "password" OK redis 127.0.0.1:6379> PING PONG Các command cơ bản của Redis connection: STT Command Mô tả ...

Redis Pttl command - Lệnh kiểm tra thời gian hết hạn của Key trong Redis

Redis Redis Key command

Redis PTTL command được sử dụng để get thời gian expiry còn lại (time to live) của key (milliseconds). Return value: Integer value: TTL (milliseconds). -1, nếu key không có thiết lập expire. -2, nếu key không tồn tại. Syntax: redis 127.0.0.1:6379> ...