All Projects → BonkaBonka → Sseredis

BonkaBonka / Sseredis

Redis Streams and PubSub to Server-Sent Event bridge in Go

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Sseredis

Go Streams
A lightweight stream processing library for Go
Stars: ✭ 615 (+2573.91%)
Mutual labels:  streams, redis
Algernon
🎩 Small self-contained pure-Go web server with Lua, Markdown, HTTP/2, QUIC, Redis and PostgreSQL support
Stars: ✭ 1,880 (+8073.91%)
Mutual labels:  redis, server-sent-events
Facil.io
Your high performance web application C framework
Stars: ✭ 1,393 (+5956.52%)
Mutual labels:  pubsub, server-sent-events
Cachingframework.redis
Distributed caching based on StackExchange.Redis and Redis. Includes support for tagging and is cluster-compatible.
Stars: ✭ 209 (+808.7%)
Mutual labels:  redis, pubsub
Nohm
node.js object relations mapper (orm) for redis
Stars: ✭ 462 (+1908.7%)
Mutual labels:  redis, pubsub
Centrifuge
Real-time messaging library for Go with scalability in mind
Stars: ✭ 446 (+1839.13%)
Mutual labels:  redis, pubsub
Chat
A simple chat app created to experiment with Redis, Gevent, Flask & Server-Sent Events.
Stars: ✭ 202 (+778.26%)
Mutual labels:  redis, server-sent-events
Centrifugo
Scalable real-time messaging server in a language-agnostic way. Set up once and forever.
Stars: ✭ 5,649 (+24460.87%)
Mutual labels:  redis, pubsub
Iodine
iodine - HTTP / WebSockets Server for Ruby with Pub/Sub support
Stars: ✭ 720 (+3030.43%)
Mutual labels:  redis, pubsub
Esp8266 Redis
An Arduino library for Redis that works on ESP8266.
Stars: ✭ 18 (-21.74%)
Mutual labels:  redis
Focabot
Music with seals!
Stars: ✭ 19 (-17.39%)
Mutual labels:  redis
M Mall Admin
🐶 微信小程序-小商城后台(基于 Node.js、MongoDB、Redis 开发的系统...)
Stars: ✭ 895 (+3791.3%)
Mutual labels:  redis
Rerate
redis-based rate counter and rate limiter
Stars: ✭ 18 (-21.74%)
Mutual labels:  redis
Redix
a persistent real-time key-value store, with the same redis protocol with powerful features
Stars: ✭ 907 (+3843.48%)
Mutual labels:  redis
Sql Streams
Painless low level jdbc abstraction using the java 8 stream api.
Stars: ✭ 17 (-26.09%)
Mutual labels:  streams
Ssm
J2EE项目系列(四)–SSM框架构建积分系统和基本商品检索系统(Spring+SpringMVC+MyBatis+Lucene+Redis+MAVEN)
Stars: ✭ 914 (+3873.91%)
Mutual labels:  redis
Gush
Fast and distributed workflow runner using ActiveJob and Redis
Stars: ✭ 894 (+3786.96%)
Mutual labels:  redis
Redis Marshal
Lightweight Redis data exploration tool
Stars: ✭ 16 (-30.43%)
Mutual labels:  redis
Scrapy Cluster
This Scrapy project uses Redis and Kafka to create a distributed on demand scraping cluster.
Stars: ✭ 921 (+3904.35%)
Mutual labels:  redis
Identity.redis
ASP.NET Identity Redis Provider
Stars: ✭ 22 (-4.35%)
Mutual labels:  redis

SSE Redis

This is a simple (extremely naïve) Server-Sent Event to Redis PUB/SUB bridge. It's a mashup of code from:

baby-gopher

Sample

var es = new EventSource('http://localhost:8080/redis/test');
es.addEventListener('test', function (event) {
	console.log(event);
}, false);

License

The MIT License (MIT)

Copyright (c) 2013 James Cook

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].