Stream-Framework
Stream-Framework copied to clipboard
Stream Framework is a Python library, which allows you to build news feed, activity streams and notification systems using Cassandra and/or Redis. The authors of Stream-Framework also provide a cloud...
Hi Nice work with this framework. I have a question regarding aggregation: Use case: Say, I have a website where users can ask a question and other users can vote...
right now we create this via bash which makes the test environment setup harder to get right.
Two questions regarding feed trimming: 1) By setting trim_chance to a negative number in my custom feed class, would that be enough to never trim a feed? I read the...
Has anyone successfully configured a pyramid application to use settings provided by an .ini file?
This [line](https://github.com/tschellenbach/Stream-Framework/blob/master/stream_framework/settings.py#L31) blows up and should be changed to ``` python except Exception as e: ```
https://github.com/tschellenbach/Stream-Framework/search?utf8=%E2%9C%93&q=feed_reads_timer
Friends, I tried to port our Redis backend for Stream framework to Cassandra and followed the instructions along with ensuring keyspace and model creation (sync_table). But when i try to...
Keyspace creation isn't documented. Table creation is hidden at the end of the docs: https://stream-framework.readthedocs.org/en/latest/cassandra_backend.html
Something is not working properly when querying activities through CassandraFeed's filter method: ``` python >>> activity = Activity(...) >>> feed = UserFeed(1) >>> feed.add(activity) >>> feed.get_timeline_storage().model.objects.filter(activity_id=activity.serialization_id).allow_filtering().count() 1 >>> feed.filter(activity_id=activity.serialization_id).count() 2...
Is there any upcoming support for notification feeds based on Cassandra? I am trying to do this myself, but I am having difficulties understanding how to implement counts and 'mark...