NoSQL 入門
Jake Roach
Data Engineer
定義: 一種 NoSQL 資料庫,使用簡單的 key-value 配對(類似 Python 的字典)來儲存資料。


常見於網頁應用,用於:
$$
Key-value 資料庫的分析平台來源:

使用 redis 函式庫在 Python 中與 Redis 互動
$$
localhost 執行的叢集6379 對外提供服務import redis
# Create a connection to Redis cluster
r = redis.Redis(
host="localhost",
port=6379,
decode_responses=True
)
接下來你會:
NoSQL 入門