self.r_client = redis.Redis(...)<\/code><\/p>\n\u8981\u5c06 Redis\u00ae \u6570\u636e\u5e93\u6a21\u5757\u5bfc\u5165\u5230\u5176\u4ed6 Python \u6e90\u4ee3\u7801\u6587\u4ef6\uff0c\u8bf7\u4f7f\u7528\u4ee5\u4e0b\u58f0\u660e\uff1a<\/p>\n
import redis_gateway \r\n\r\n r_gateway = redis_gateway.RedisGateway() \r\n r_client = r_gateway.r_client<\/code><\/pre>\n<\/li>\n<\/ol>\n\u5b9e\u73b0 Redis\u00ae \u5b57\u7b26\u4e32<\/h2>\n
\u5728 Redis\u00ae \u4e2d\uff0c\u5b57\u7b26\u4e32\u662f\u5b57\u8282\u5e8f\u5217\uff0c\u662f\u6700\u5e38\u7528\u7684\u6570\u636e\u7c7b\u578b\u3002\u60a8\u53ef\u4ee5\u4f7f\u7528\u5b57\u7b26\u4e32\u6570\u636e\u7c7b\u578b\u6765\u5b58\u50a8\u4f1a\u8bdd ID\u3001\u7528\u6237\u5bc6\u7801\u3001\u4ea7\u54c1\u4fe1\u606f\u548c\u9759\u6001 HTML \u5185\u5bb9\u3002\u8981\u5728 Redis\u00ae \u670d\u52a1\u5668\u4e2d\u521b\u5efa\u5bc6\u94a5\uff0c\u8bf7\u4f7f\u7528\u5173\u952e\u5b57\u3002\u82e5\u8981\u68c0\u7d22\u952e\u503c\uff0c\u8bf7\u4f7f\u7528\u5173\u952e\u5b57\u3002\u5728\u672c\u8282\u4e2d\uff0c\u521b\u5efa\u4e00\u4e2a Python \u5e94\u7528\u7a0b\u5e8f\u6765\u5b9e\u73b0 Redis\u00ae \u5b57\u7b26\u4e32\uff0c\u5982\u4e0b\u6240\u8ff0\u3002set<\/code>get<\/code><\/p>\n\n- \u521b\u5efa\u65b0\u6587\u4ef6
redis_strings.py<\/code>\n $ nano redis_strings.py<\/code><\/pre>\n<\/li>\n- \u5c06\u4ee5\u4e0b\u5185\u5bb9\u6dfb\u52a0\u5230\u6587\u4ef6\u4e2d\n
import redis_gateway \r\n\r\n r_gateway = redis_gateway.RedisGateway() \r\n r_client = r_gateway.r_client\r\n\r\n r_key = \"john_doe\"\r\n r_value = \"example-password\"\r\n\r\n r_client.set(r_key, r_value) \r\n\r\n print(\"...\\r\\n You've successfully set the Redis key.\\r\\n\")\r\n\r\n if r_client.exists(r_key): \r\n\r\n r_value = r_client.get(r_key).decode(\"utf-8\")\r\n\r\n print(\"The value for the \" + r_key + \" key is \" + r_value + \"\\r\\n ...\")<\/code><\/pre>\n\u4fdd\u5b58\u5e76\u5173\u95ed\u6587\u4ef6\u3002<\/p>\n
\u4e0a\u9762\u7684\u5e94\u7528\u7a0b\u5e8f\u6587\u4ef6\u5bfc\u5165\u60a8\u4e4b\u524d\u521b\u5efa\u7684\u6a21\u5757\uff0c\u7136\u540e\uff1aredis_gateway<\/code><\/p>\n\nr_key<\/code>\uff1a\u5b9a\u4e49\u60a8\u5728 Redis\u00ae \u6570\u636e\u5e93\u4e2d\u8bbe\u7f6e\u7684\u5b57\u7b26\u4e32\u952e\u7684\u540d\u79f0<\/li>\nr_value<\/code>\uff1a\u5b9a\u4e49 Redis\u00ae \u952e\u503c<\/li>\nr_client.set(r_key, r_value)<\/code>\uff1a\u5728 Redis\u00ae \u6570\u636e\u5e93\u4e2d\u8bbe\u7f6e\u5bc6\u94a5<\/li>\nif r_client.exists(r_key)<\/code>\uff1a\u5728\u68c0\u7d22\u5bc6\u94a5\u4e4b\u524d\uff0c\u5148\u9a8c\u8bc1\u5bc6\u94a5\u662f\u5426\u5b58\u5728\u4e8e Redis\u00ae \u6570\u636e\u5e93\u670d\u52a1\u5668\u4e2d\uff0c\u4ee5\u907f\u514d\u8fd0\u884c\u65f6\u9519\u8bef<\/li>\nr_client.get(r_key).decode(\"utf-8\")<\/code>\uff1a\u4ece Redis\u00ae \u6570\u636e\u5e93\u4e2d\u68c0\u7d22\u5bc6\u94a5<\/li>\n<\/ul>\n<\/li>\n- \u8fd0\u884c Redis\u00ae \u5b57\u7b26\u4e32\u5e94\u7528\u7a0b\u5e8f\u6587\u4ef6\n
$ python3 redis_strings.py<\/code><\/pre>\n\u8f93\u51fa\uff1a<\/p>\n
...\r\n You've successfully set the Redis key.\r\n\r\n The value for the john_doe key is example-password\r\n ...<\/code><\/pre>\n\u5982\u4e0a\u9762\u7684\u8f93\u51fa\u6240\u793a\uff0cPython \u6b63\u786e\u8fde\u63a5\u5230 Redis\u00ae \u6570\u636e\u5e93\u5e76\u8bbe\u7f6e\u5b57\u7b26\u4e32\u952e\u7684\u503c\u3002example-password<\/code>john_doe<\/code><\/li>\n<\/ol>\n\u5b9e\u73b0 Redis\u00ae \u5217\u8868<\/h2>\n
Redis\u00ae \u5217\u8868\u662f\u7528\u4e8e\u5b9e\u73b0\u6392\u961f\u673a\u5236\u7684\u5b57\u7b26\u4e32\u7684\u6709\u5e8f\u96c6\u5408\u3002Redis\u00ae \u5141\u8bb8\u60a8\u4f7f\u7528 \u548c \u547d\u4ee4\u5c06\u5143\u7d20\u6dfb\u52a0\u5230\u5217\u8868\u7684\u5934\u90e8\u6216\u5c3e\u90e8\u3002\u521b\u5efa\u65b0\u7684 Python \u5e94\u7528\u7a0b\u5e8f\u6765\u6d4b\u8bd5 Redis\u00ae \u5217\u8868\u529f\u80fd\uff0c\u5982\u4e0b\u6240\u8ff0\u3002lpush<\/code>rpush<\/code><\/p>\n\n- \u521b\u5efa\u65b0\u6587\u4ef6
redis_lists.py<\/code>\n $ nano redis_lists.py<\/code><\/pre>\n<\/li>\n- \u5c06\u4ee5\u4e0b\u5185\u5bb9\u6dfb\u52a0\u5230\u6587\u4ef6\u4e2d\n
import redis_gateway\r\n import json\r\n\r\n r_gateway = redis_gateway.RedisGateway() \r\n r_client = r_gateway.r_client\r\n\r\n r_list = \"sample_customer_job_list\"\r\n\r\n sample_job_1 = {\r\n \"firstName\": \"JOHN\",\r\n \"lastName\": \"DOE\",\r\n \"email\": \"john_doe@example.com\"\r\n }\r\n\r\n sample_job_2 = {\r\n \"firstName\": \"MARY\",\r\n \"lastName\": \"SMITH\",\r\n \"email\": \"mary_smith@example.com\"\r\n }\r\n\r\n r_list_value_1 = json.dumps(sample_job_1)\r\n r_list_value_2 = json.dumps(sample_job_2)\r\n\r\n r_client.lpush(r_list, r_list_value_1, r_list_value_2) \r\n\r\n print(\"...\\r\\n You've successfully added a customer registration jobs to the Redis list.\\r\\n...\")\r\n\r\n while(r_client.llen(r_list) != 0):\r\n\r\n print(\"The values for the \" + r_list + \"\\r\\n...\")\r\n\r\n print(r_client.lpop(r_list).decode(\"utf-8\") + \"\\r\\n...\") <\/code><\/pre>\n\u4fdd\u5b58\u5e76\u5173\u95ed\u6587\u4ef6\u3002<\/p>\n
\u4e0b\u9762\u662f\u4e0a\u9762\u7684\u5e94\u7528\u7a0b\u5e8f\u4ee3\u7801\u7684\u4f5c\u7528\uff1a<\/p>\n
\n- \u8be5\u53d8\u91cf\u8868\u793a\u793a\u4f8b Redis\u00ae \u5217\u8868\u7684\u952e\u3002
r_list<\/code><\/li>\nsample_job_1 = {...}<\/code>\u548c \u662f\u793a\u4f8b\u5217\u8868\u503c\u3002sample_job_1 = {...}<\/code><\/li>\n- \u8be5\u51fd\u6570\u5c06\u4e24\u4e2a\u793a\u4f8b\u4f5c\u4e1a\u63d2\u5165\u5230 Redis\u00ae \u5217\u8868\u4e2d
r_client.lpush(r_list, r_list_value_1, r_list_value_2)<\/code><\/li>\n- \u5faa\u73af\u67e5\u8be2 Redis\u00ae \u670d\u52a1\u5668\u5e76\u5faa\u73af\u8bbf\u95ee\u53d8\u91cf\u4ee5\u6253\u5370\u5217\u8868\u503c
while(r_client.llen(r_list) != 0):<\/code>r_list<\/code><\/li>\n<\/ul>\n<\/li>\n- \u8fd0\u884c\u5e94\u7528\u7a0b\u5e8f\u6587\u4ef6
redis_lists.py<\/code>\n $ python3 redis_lists.py<\/code><\/pre>\n\u8f93\u51fa\uff1a<\/p>\n
...\r\n You've successfully added a customer registration jobs to the Redis list.\r\n ...\r\n The values for the sample_customer_job_list\r\n ...\r\n {\"firstName\": \"MARY\", \"lastName\": \"SMITH\", \"email\": \"mary_smith@example.com\"}\r\n ...\r\n The values for the sample_customer_job_list\r\n ...\r\n {\"firstName\": \"JOHN\", \"lastName\": \"DOE\", \"email\": \"john_doe@example.com\"}\r\n ...<\/code><\/pre>\n<\/li>\n<\/ol>\n\u5b9e\u73b0 Redis\u00ae \u54c8\u5e0c<\/h2>\n
Redis\u00ae \u54c8\u5e0c\u662f\u5c06\u952e\u6620\u5c04\u5230\u503c\u5bf9\u7684\u8bb0\u5f55\u7c7b\u578b\u3002\u5728 Python \u5e94\u7528\u7a0b\u5e8f\u4e2d\u4ee5\u516c\u53f8\u6570\u636e\u7684\u5f62\u5f0f\u5b9e\u73b0 Redis\u00ae \u54c8\u5e0c\uff0c\u5982\u4e0b\u6240\u8ff0\u3002<\/p>\n
\n- \u521b\u5efa\u65b0\u6587\u4ef6
redis_hash.py<\/code>\n $ nano redis_hash.py<\/code><\/pre>\n<\/li>\n- \u5c06\u4ee5\u4e0b\u5185\u5bb9\u6dfb\u52a0\u5230\u6587\u4ef6\u4e2d\n
import redis_gateway\r\n import json\r\n\r\n r_gateway = redis_gateway.RedisGateway() \r\n r_client = r_gateway.r_client\r\n\r\n r_hash = \"company_profile\"\r\n\r\n r_client.hset(r_hash, \"company_name\", \"XYZ COMPANY\")\r\n r_client.hset(r_hash, \"add_line_1\", \"123 SAMPLE STREET\")\r\n r_client.hset(r_hash, \"add_line_2\", \"APT BUILDING\")\r\n r_client.hset(r_hash, \"county\", \"3RD COUNTY\")\r\n r_client.hset(r_hash, \"city\", \"SUN CITY\")\r\n r_client.hset(r_hash, \"zip\", \"123456\")\r\n\r\n print(\"...\\r\\nYou've successfully set a company profile.\\r\\n...\")\r\n\r\n print(\"Company profile information \\r\\n\" )\r\n\r\n print(json.dumps(str(r_client.hgetall(r_hash)))) \r\n\r\n print(\"Company Name : \" + r_client.hget(r_hash, \"company_name\").decode(\"utf-8\"))<\/code><\/pre>\n\u4fdd\u5b58\u5e76\u5173\u95ed\u6587\u4ef6\u3002<\/p>\n
\u5728\u4e0a\u8ff0\u5e94\u7528\u4e2d\uff1a<\/p>\n
\n- \u8be5\u53d8\u91cf\u8868\u793a Redis\u00ae \u6570\u636e\u5e93\u4e2d\u7684\u54c8\u5e0c\u952e\u3002
r_hash<\/code><\/li>\n- \u8be5\u51fd\u6570\u5728 Redis \u670d\u52a1\u5668\u4e2d\u8bbe\u7f6e\u54c8\u5e0c\u503c\u3002\u6b64\u51fd\u6570\u4e0e\u4ee5\u4e0b\u5185\u5bb9\u76f8\u540c\uff1a
r_client.hset(r_hash, \"company_name\", \"XYZ COMPANY\")<\/code>\n company_profile['company_name'] = \"XYZ COMPANY\"<\/code><\/pre>\n<\/li>\nr_client.hgetall(r_hash)<\/code>\uff1a\u68c0\u7d22\u7ed9\u5b9a\u54c8\u5e0c\u7684\u6240\u6709\u952e\u503c\u5bf9<\/li>\nr_client.hget(r_hash, \"company_name\")<\/code>\uff1a\u68c0\u7d22\u54c8\u5e0c\u4e2d\u7ed9\u5b9a\u952e\u7684\u503c<\/li>\n<\/ul>\n<\/li>\n- \u8fd0\u884c\u5e94\u7528\u7a0b\u5e8f\n
$ python3 redis_hash.py<\/code><\/pre>\n\u8f93\u51fa\uff1a<\/p>\n
...\r\n You've successfully set a company profile.\r\n ...\r\n Company profile information\r\n\r\n \"{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'}\"\r\n Company Name : XYZ COMPANY<\/code><\/pre>\n<\/li>\n<\/ol>\n\u5b9e\u73b0 Redis\u00ae \u6392\u5e8f\u96c6<\/h2>\n
\u6392\u5e8f\u96c6\u8868\u793a\u6309\u5173\u8054\u4e50\u8c31\u6392\u5217\u7684\u5b57\u7b26\u4e32\u96c6\u5408\u3002\u5143\u7d20\u5728\u6392\u5e8f\u96c6\u4e2d\u53ea\u80fd\u51fa\u73b0\u4e00\u6b21\u3002Redis\u00ae \u63d0\u4f9b\u4e86\u7528\u4e8e\u6dfb\u52a0\u548c\u68c0\u7d22\u6392\u5e8f\u96c6\u503c\u7684 and \u51fd\u6570\u3002\u5728 Python \u5e94\u7528\u7a0b\u5e8f\u4e2d\u5b9e\u73b0\u8fd9\u4e9b\u51fd\u6570\uff0c\u5982\u4e0b\u6240\u8ff0\u3002zadd<\/code>zrange<\/code><\/p>\n\n- \u521b\u5efa\u65b0\u6587\u4ef6
redis_sorted_set.py<\/code>\n $ nano redis_sorted_set.py<\/code><\/pre>\n<\/li>\n- \u5c06\u4ee5\u4e0b\u5185\u5bb9\u6dfb\u52a0\u5230\u6587\u4ef6\u4e2d\n
import redis_gateway\r\n import json\r\n\r\n r_gateway = redis_gateway.RedisGateway() \r\n r_client = r_gateway.r_client\r\n\r\n r_sorted_set = \"database_ratings\"\r\n\r\n database_scores = {\r\n 'MySQL': 1, \r\n 'PostgreSQl': 2,\r\n 'SQLite': 3,\r\n 'MongoDB': 4 \r\n }\r\n\r\n r_client.zadd(r_sorted_set, database_scores)\r\n\r\n print(\"...\\r\\nYou've successfully entered four database ratings.\\r\\n...\")\r\n\r\n print(\"Database rating information: \\r\\n\")\r\n\r\n print(r_client.zrange(r_sorted_set, 0, 3))<\/code><\/pre>\n\u4fdd\u5b58\u5e76\u5173\u95ed\u6587\u4ef6\u3002<\/p>\n
\u5728\u4e0a\u8ff0\u5e94\u7528\u4e2d\uff1a<\/p>\n
\nr_sorted_set<\/code>\uff1a\u58f0\u660e\u6392\u5e8f\u96c6\u7684\u952e<\/li>\ndatabase_scores = {...}<\/code>\uff1a\u5305\u542b\u56db\u4e2a\u5177\u6709\u5339\u914d\u5206\u6570\u7684\u5143\u7d20<\/li>\nr_client.zadd(r_sorted_set, database_scores)<\/code>\uff1a\u5c06 set \u5143\u7d20\u6dfb\u52a0\u5230 Redis\u00ae \u670d\u52a1\u5668<\/li>\nr_client.zrange(r_sorted_set, 0, 3)<\/code>\uff1a\u4ece\u6570\u636e\u5e93\u4e2d\u8fd4\u56de\u6240\u6709\u6392\u5e8f\u7684\u96c6\u5408\u503c<\/li>\n<\/ul>\n<\/li>\n- \u8fd0\u884c\u5e94\u7528\u7a0b\u5e8f\n
$ python3 redis_sorted_set.py<\/code><\/pre>\n\u8f93\u51fa\uff1a<\/p>\n
...\r\n You've successfully entered four database ratings.\r\n ...\r\n Database rating information:\r\n\r\n [b'MySQL', b'PostgreSQl', b'SQLite', b'MongoDB']<\/code><\/pre>\n<\/li>\n<\/ol>\n\u7ed3\u8bba<\/h2>\n
\u5728\u672c\u6307\u5357\u4e2d\uff0c\u60a8\u5df2\u4f7f\u7528 Vultr Managed Database for Caching with Python \u5b9e\u73b0\u4e86\u4e0d\u540c\u7684\u6570\u636e\u7c7b\u578b\u3002\u6839\u636e\u60a8\u7684\u5e94\u7528\u7a0b\u5e8f\u7528\u4f8b\uff0c\u5b9e\u73b0\u76f8\u5173\u7684 Redis\u00ae \u6570\u636e\u7c7b\u578b\u4ee5\u5728\u6570\u636e\u5e93\u4e2d\u7f13\u5b58\u548c\u5b58\u50a8\u6570\u636e\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"
\u4ecb\u7ecd Redis\u00ae \u662f\u4e00\u79cd\u5185\u5b58\u6570\u636e\u5b58\u50a8\uff0c\u63d0\u4f9b\u7075\u6d3b\u7684\u6570\u636e\u7ed3\u6784\u3001\u9ad8\u6027\u80fd\u548c\u6309\u9700\u53ef\u6269\u5c55\u6027\u3002Vultr Managed […]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[1751,1752,1753],"class_list":["post-5650","post","type-post","status-publish","format-standard","hentry","category-jiaocheng","tag-python","tag-vultr","tag-1753"],"_links":{"self":[{"href":"https:\/\/www.baishitou.cn\/wp-json\/wp\/v2\/posts\/5650","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.baishitou.cn\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.baishitou.cn\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.baishitou.cn\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.baishitou.cn\/wp-json\/wp\/v2\/comments?post=5650"}],"version-history":[{"count":0,"href":"https:\/\/www.baishitou.cn\/wp-json\/wp\/v2\/posts\/5650\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.baishitou.cn\/wp-json\/wp\/v2\/media?parent=5650"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.baishitou.cn\/wp-json\/wp\/v2\/categories?post=5650"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.baishitou.cn\/wp-json\/wp\/v2\/tags?post=5650"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}