Install and use redis in python

Source: Internet
Author: User
Tags download redis
Install redis in python and use python to operate the redis database. first download the redis-py module github. comandymccurdyredis-pyshell # wgetgit... install redis in python

Redis database operations with python, first download redis-py module https://github.com/andymccurdy/redis-py

Shell # wget https://github.com/andymccurdy/redis-py


Decompress the package

Run the python setup. py install installation module in the extract directory.

Installation complete

Usage:

Import redis

R = redis. Redis (host = 'localhost', port = 6379, db = 0)

R ['test'] = 'test' # or you can set the key in r. set ('test', 'test ').

R. get ('test') # obtain the value of test

R. delete ('test') # delete this key

R. flushdb () # clear the database

R. keys () # List all keys

R. exists ('test') # check whether this key exists

R. dbsize () # Number of items in the database

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.