Thierry Schellenbach
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?
any docs on why this was removed from the default context processors?
Still encountering this issue
Some info on this: https://github.com/boto/boto/issues/542 https://github.com/boto/boto/pull/1023 https://github.com/boto/boto/issues/820 http://itsecureadmin.com/2011/06/aws-instance-ebs-volume-delete-on-termination/ Something like this might work: ``` python # get the current mapping mapping = ec2,get_instance_attribute('i-xxxxxxxx', 'BlockDeviceMapping') # remove the current value new_mapping...