add KeyDB (#1373)
This commit is contained in:
parent
6448ad5292
commit
0f64a57c4f
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,28 @@
|
|||
additionalProperties:
|
||||
formFields:
|
||||
- default: jhkdjhkjdhsIUTYURTU
|
||||
envKey: PANEL_KEYDB_ROOT_PASSWORD
|
||||
labelEn: Password
|
||||
labelZh: 密码
|
||||
random: true
|
||||
required: true
|
||||
rule: paramComplexity
|
||||
type: password
|
||||
- default: 6379
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- envKey: ARCH
|
||||
default: 'x86_64'
|
||||
labelEn: Chip architecture
|
||||
labelZh: 芯片架构
|
||||
edit: true
|
||||
type: select
|
||||
values:
|
||||
- label: amd64
|
||||
value: 'x86_64'
|
||||
- label: arm64
|
||||
value: 'arm64'
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
services:
|
||||
keydb:
|
||||
image: eqalpha/keydb:${ARCH}_v6.3.4
|
||||
restart: always
|
||||
container_name: ${CONTAINER_NAME}
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:6379
|
||||
command: keydb-server /etc/keydb/keydb.conf --requirepass ${PANEL_KEYDB_ROOT_PASSWORD}
|
||||
volumes:
|
||||
- ./data:/data
|
||||
- ./conf/keydb.conf:/etc/keydb/keydb.conf
|
||||
- ./logs:/logs
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
什么是KeyDB?
|
||||
--------------
|
||||
|
||||
KeyDB 是 Redis 的高性能分支,专注于多线程、内存效率和高吞吐量。除了性能改进之外,KeyDB 还提供主动复制、闪存存储和子Key过期等功能。 KeyDB 具有 MVCC 架构,允许您执行 KEYS 和 SCAN 等查询,而不会阻塞数据库并降低性能。
|
||||
|
||||
KeyDB 与 Redis 协议、模块和脚本保持完全兼容。这包括脚本和事务的原子性保证。由于 KeyDB 与 Redis 开发保持同步,因此 KeyDB 是 Redis 功能的超集,这使得 KeyDB 成为现有 Redis 部署的替代品。
|
||||
|
||||
在相同的硬件上,KeyDB 可以实现比 Redis 显着更高的吞吐量。主动复制简化了热备用故障转移,使您可以轻松地在副本上分发写入并使用简单的基于 TCP 的负载平衡/故障转移。 KeyDB 的更高性能使您可以在更少的硬件上完成更多工作,从而降低运营成本和复杂性。
|
||||
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
name: KeyDB
|
||||
tags:
|
||||
- 数据库
|
||||
title: 高性能Redis数据库
|
||||
description: KeyDB 是 Redis 的高性能分支,专注于多线程、内存效率和高吞吐量
|
||||
additionalProperties:
|
||||
key: keydb
|
||||
name: KeyDB
|
||||
tags:
|
||||
- Database #应用标签,可以有多个,请参照下方的标签列表
|
||||
shortDescZh: KeyDB 是 Redis 的高性能分支,专注于多线程、内存效率和高吞吐量
|
||||
shortDescEn: KeyDB is a high performance fork of Redis with a focus on multithreading, memory efficiency, and high throughput
|
||||
type: runtime
|
||||
crossVersionUpdate: true
|
||||
limit: 1
|
||||
website: https://docs.keydb.dev
|
||||
github: https://github.com/Snapchat/KeyDB
|
||||
document: https://docs.keydb.dev/docs
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 225 KiB |
Loading…
Reference in New Issue