Thierry Schellenbach

Results 47 comments of Thierry Schellenbach

Think we could easily use http://redis.io/commands/zremrangebyscore over there

Most activity feeds apply a filter at read time to deal with privacy settings. (The do it at read time, so if you change a privacy setting the feeds change...

You can use different feeds for different privacy levels. so you could have user_private, user_friends, user_all etc. It's pretty normal to route the feed read requests via your servers btw....

I don't think you need to proxy the websocket part. You could just use that as a trigger that the feed might have changed and reread from your backend. With...

You are right, that's a tricky problem. Alternatively you could connect Stream's webhook to a serverless lambda function, apply your privacy logic and use something like Pubnub/Pusher for realtime only....

1.) Python filtering So the feed is really fast, so you might be able to get away with filtering it in python. [i for i in feed[:20] if i.is_active] Of...

What's the max length on your feeds?