Redis? 是一種內(nèi)存數(shù)據(jù)存儲,提供靈活的數(shù)據(jù)結(jié)構(gòu)、高性能和按需可擴展性。Vultr Managed Database for Caching 為任務(wù)關(guān)鍵型應(yīng)用程序提供高可用性、高吞吐量和低延遲。本指南介紹如何在 Python 中使用 Vultr Managed Database for Caching 創(chuàng)建高可用性應(yīng)用程序。
準備工作:
要將 Vultr Managed Database for Caching 集成到 Python 應(yīng)用程序,請安裝 Python 模塊并設(shè)置示例項目目錄來存儲應(yīng)用程序文件。redis
pip
$ pip install --upgrade pip
redis
$ pip install redis
project
$ mkdir project
project
$ cd project
要在 Python 應(yīng)用程序文件中使用 Vultr Managed Database for Caching 連接,請創(chuàng)建一個連接到數(shù)據(jù)庫的中央 Python 模塊。然后,可以通過在應(yīng)用程序中使用子句聲明數(shù)據(jù)庫模塊來重用該模塊。按照以下步驟創(chuàng)建 Redis? 連接模塊import
redis_gateway.py
$ nano redis_gateway.py
vultr-prod-abcd.vultrdb.com
16752
example-password
import redis
class RedisGateway:
def __init__(self):
r_host = 'vultr-prod-abcd.vultrdb.com'
r_port = 16752
r_pass = 'example-password'
self.r_client = redis.Redis(
host = r_host,
port = r_port,
password = r_pass,
ssl = 'true'
)
保存并關(guān)閉文件
上面的 Python 應(yīng)用程序代碼使用方法聲明一個類。每次創(chuàng)建類的實例時,都會執(zhí)行此方法。然后,它使用該函數(shù)連接到 Redis? 數(shù)據(jù)庫。RedisGateway
__init__(self)
RedisGateway
self.r_client = redis.Redis(...)
要將 Redis? 數(shù)據(jù)庫模塊導(dǎo)入到其他 Python 源代碼文件,請使用以下聲明:
import redis_gateway
r_gateway = redis_gateway.RedisGateway()
r_client = r_gateway.r_client
在 Redis? 中,字符串是字節(jié)序列,是最常用的數(shù)據(jù)類型。您可以使用字符串數(shù)據(jù)類型來存儲會話 ID、用戶密碼、產(chǎn)品信息和靜態(tài) HTML 內(nèi)容。要在 Redis? 服務(wù)器中創(chuàng)建密鑰,請使用關(guān)鍵字。若要檢索鍵值,請使用關(guān)鍵字。在本節(jié)中,創(chuàng)建一個 Python 應(yīng)用程序來實現(xiàn) Redis? 字符串,如下所述。set
get
redis_strings.py
$ nano redis_strings.py
import redis_gateway
r_gateway = redis_gateway.RedisGateway()
r_client = r_gateway.r_client
r_key = "john_doe"
r_value = "example-password"
r_client.set(r_key, r_value)
print("...\r\n You've successfully set the Redis key.\r\n")
if r_client.exists(r_key):
r_value = r_client.get(r_key).decode("utf-8")
print("The value for the " + r_key + " key is " + r_value + "\r\n ...")
保存并關(guān)閉文件。
上面的應(yīng)用程序文件導(dǎo)入您之前創(chuàng)建的模塊,然后:redis_gateway
r_key
:定義您在 Redis? 數(shù)據(jù)庫中設(shè)置的字符串鍵的名稱r_value
:定義 Redis? 鍵值r_client.set(r_key, r_value)
:在 Redis? 數(shù)據(jù)庫中設(shè)置密鑰if r_client.exists(r_key)
:在檢索密鑰之前,先驗證密鑰是否存在于 Redis? 數(shù)據(jù)庫服務(wù)器中,以避免運行時錯誤r_client.get(r_key).decode("utf-8")
:從 Redis? 數(shù)據(jù)庫中檢索密鑰 $ python3 redis_strings.py
輸出:
...
You've successfully set the Redis key.
The value for the john_doe key is example-password
...
如上面的輸出所示,Python 正確連接到 Redis? 數(shù)據(jù)庫并設(shè)置字符串鍵的值。example-password
john_doe
Redis? 列表是用于實現(xiàn)排隊機制的字符串的有序集合。Redis? 允許您使用 和 命令將元素添加到列表的頭部或尾部。創(chuàng)建新的 Python 應(yīng)用程序來測試 Redis? 列表功能,如下所述。lpush
rpush
redis_lists.py
$ nano redis_lists.py
import redis_gateway
import json
r_gateway = redis_gateway.RedisGateway()
r_client = r_gateway.r_client
r_list = "sample_customer_job_list"
sample_job_1 = {
"firstName": "JOHN",
"lastName": "DOE",
"email": "john_doe@example.com"
}
sample_job_2 = {
"firstName": "MARY",
"lastName": "SMITH",
"email": "mary_smith@example.com"
}
r_list_value_1 = json.dumps(sample_job_1)
r_list_value_2 = json.dumps(sample_job_2)
r_client.lpush(r_list, r_list_value_1, r_list_value_2)
print("...\r\n You've successfully added a customer registration jobs to the Redis list.\r\n...")
while(r_client.llen(r_list) != 0):
print("The values for the " + r_list + "\r\n...")
print(r_client.lpop(r_list).decode("utf-8") + "\r\n...")
保存并關(guān)閉文件。
下面是上面的應(yīng)用程序代碼的作用:
r_list
sample_job_1 = {...}
和 是示例列表值。sample_job_1 = {...}
r_client.lpush(r_list, r_list_value_1, r_list_value_2)
while(r_client.llen(r_list) != 0):
r_list
redis_lists.py
$ python3 redis_lists.py
輸出:
...
You've successfully added a customer registration jobs to the Redis list.
...
The values for the sample_customer_job_list
...
{"firstName": "MARY", "lastName": "SMITH", "email": "mary_smith@example.com"}
...
The values for the sample_customer_job_list
...
{"firstName": "JOHN", "lastName": "DOE", "email": "john_doe@example.com"}
...
Redis? 哈希是將鍵映射到值對的記錄類型。在 Python 應(yīng)用程序中以公司數(shù)據(jù)的形式實現(xiàn) Redis? 哈希,如下所述。
redis_hash.py
$ nano redis_hash.py
import redis_gateway
import json
r_gateway = redis_gateway.RedisGateway()
r_client = r_gateway.r_client
r_hash = "company_profile"
r_client.hset(r_hash, "company_name", "XYZ COMPANY")
r_client.hset(r_hash, "add_line_1", "123 SAMPLE STREET")
r_client.hset(r_hash, "add_line_2", "APT BUILDING")
r_client.hset(r_hash, "county", "3RD COUNTY")
r_client.hset(r_hash, "city", "SUN CITY")
r_client.hset(r_hash, "zip", "123456")
print("...\r\nYou've successfully set a company profile.\r\n...")
print("Company profile information \r\n" )
print(json.dumps(str(r_client.hgetall(r_hash))))
print("Company Name : " + r_client.hget(r_hash, "company_name").decode("utf-8"))
保存并關(guān)閉文件。
在上述應(yīng)用中:
r_hash
r_client.hset(r_hash, "company_name", "XYZ COMPANY")
company_profile['company_name'] = "XYZ COMPANY"
r_client.hgetall(r_hash)
:檢索給定哈希的所有鍵值對r_client.hget(r_hash, "company_name")
:檢索哈希中給定鍵的值 $ python3 redis_hash.py
輸出:
...
You've successfully set a company profile.
...
Company profile information
"{b'company_name': b'XYZ COMPANY', b'add_line_1': b'123 SAMPLE STREET', b'add_line_2': b'APT BUILDING', b'county': b'3RD COUNTY', b'city': b'SUN CITY', b'zip': b'123456'}"
Company Name : XYZ COMPANY
排序集表示按關(guān)聯(lián)樂譜排列的字符串集合。元素在排序集中只能出現(xiàn)一次。Redis? 提供了用于添加和檢索排序集值的 and 函數(shù)。在 Python 應(yīng)用程序中實現(xiàn)這些函數(shù),如下所述。zadd
zrange
redis_sorted_set.py
$ nano redis_sorted_set.py
import redis_gateway
import json
r_gateway = redis_gateway.RedisGateway()
r_client = r_gateway.r_client
r_sorted_set = "database_ratings"
database_scores = {
'MySQL': 1,
'PostgreSQl': 2,
'SQLite': 3,
'MongoDB': 4
}
r_client.zadd(r_sorted_set, database_scores)
print("...\r\nYou've successfully entered four database ratings.\r\n...")
print("Database rating information: \r\n")
print(r_client.zrange(r_sorted_set, 0, 3))
保存并關(guān)閉文件。
在上述應(yīng)用中:
r_sorted_set
:聲明排序集的鍵database_scores = {...}
:包含四個具有匹配分數(shù)的元素r_client.zadd(r_sorted_set, database_scores)
:將 set 元素添加到 Redis? 服務(wù)器r_client.zrange(r_sorted_set, 0, 3)
:從數(shù)據(jù)庫中返回所有排序的集合值 $ python3 redis_sorted_set.py
輸出:
...
You've successfully entered four database ratings.
...
Database rating information:
[b'MySQL', b'PostgreSQl', b'SQLite', b'MongoDB']
在本指南中,您已使用 Vultr Managed Database for Caching with Python 實現(xiàn)了不同的數(shù)據(jù)類型。根據(jù)您的應(yīng)用程序用例,實現(xiàn)相關(guān)的 Redis? 數(shù)據(jù)類型以在數(shù)據(jù)庫中緩存和存儲數(shù)據(jù)。
]]>