Basically i want to pub/sub Protocol buffer messages over a tcp async socket.
Are there any open-source libs that pub/sub Protocol buffer messages over tcp?
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
At a push – how about a redis node? Ultimately though any pub/sub implementation would suffice as long as it handles binary. I happen to like redis as it solves a host of problems in one tool; BookSleeve is a fully async binary-safe redis client that works well with BLOBs such as protobuf fragments.
Disclosure: since I wrote both protobuf-net and BookSleeve I might be biased…