Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python submit work to redis


# step 1: import the redis-py client package
import redis

# step 2: define our connection information for Redis
# Replaces with your configuration information
redis_host = "localhost"
redis_port = 6379
redis_password = ""


def hello_redis():
    """Example Hello Redis Program"""
   
    # step 3: create the Redis Connection object
    try:
   
        # The decode_repsonses flag here directs the client to convert the responses from Redis into Python strings
        # using the default encoding utf-8.  This is client specific.
        r = redis.StrictRedis(host=redis_host, port=redis_port, password=redis_password, decode_responses=True)
   
        # step 4: Set the hello message in Redis
        r.set("msg:hello", "Hello Redis!!!")

        # step 5: Retrieve the hello message from Redis
        msg = r.get("msg:hello")
        print(msg)        
   
    except Exception as e:
        print(e)


if __name__ == '__main__':
    hello_redis()
Comment

PREVIOUS NEXT
Code Example
Python :: who created python 
Python :: how to create an empty list of certain length in python 
Python :: pandas remove leading trailing spaces in dataframe 
Python :: beautifulsoup find get value 
Python :: pandas print a single row 
Python :: numpy randint 
Python :: flask cookies 
Python :: displaying cv2.imshow on specific window position 
Python :: python read file into variable 
Python :: pycocotools python3.7 
Python :: python slack 
Python :: selenium select element by id 
Python :: list sort by key and value 
Python :: findout not common values between two data frames 
Python :: redirect a post request django 
Python :: split a string into N equal parts. 
Python :: python thread function 
Python :: python string remove accent 
Python :: pyplot python 
Python :: randomly shuffle array python 
Python :: handle 404 in requests python 
Python :: numpy rolling average 
Python :: copy files to a directory using text file 
Python :: python convert hex number to decimal 
Python :: stack concatenate dataframe 
Python :: def extract_title(input_df): 
Python :: python see if a number is greater than other 
Python :: python datetime get weekday name 
Python :: python cholesky 
Python :: xml to json in python 
ADD CONTENT
Topic
Content
Source link
Name
8+7 =