zoukankan      html  css  js  c++  java
  • 基于redis(订阅发布)实现python和java进程间通信

    主要结构为: python进程发布消息,java进程订阅消息。

    依赖环境:

    python:   pip install redis

    java:  jedis

    1. python端:

    PubSub.py

    import redis
    
    class PubSub(object):
        def __init__(self, host, port, db):
            self.__conn = redis.Redis(host, port, db)
    
        def publish(self, channel, msg):
            self.__conn.publish(channel, msg)
            return True
    
        def subscribe(self, channel):
            pub = self.__conn.pubsub()
            pub.subscribe(channel)
            pub.parse_response()
            return pub
    

    sub.py

    from PubSub import PubSub
    
    obj = PubSub('localhost', 6379, 1)
    redis_sub = obj.subscribe('cord')
    
    while True:
        msg = redis_sub.parse_response()
        msg = msg[2].decode()
        print(msg)
    

    2. java端

    RedisPub.java

    import redis.clients.jedis.Jedis;
    import java.util.Date;
    public class RedisPub {
        private static Jedis jedis = new Jedis("localhost",6379);
        private static final String channel = "cord";
        public static void main(String[] args){
            String message = new Date().toString();
            jedis.publish(channel, message);
        }
    }

    参考链接:

    http://www.cnblogs.com/melonjiang/p/5342383.html

  • 相关阅读:
    Python正则表达式
    机器学习--------SVM
    tensor内部结构
    Tensor类型
    Tensor索引操作
    常用的Tensor操作
    Tensor基本操作
    神经网络
    Autograd:自动微分
    nginx之fastcgi配置
  • 原文地址:https://www.cnblogs.com/cord/p/9226632.html
Copyright © 2011-2022 走看看