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...
The implementation of `__getitem__` in `BaseFeed` class has some bug. It's not returning the last value when `[:]` is used. And I had to use `feed[:feed.count()]` to get the entire...
Hi, Over View of Issue: In our django APP celery uses JSON serialization instead of pickle for security reasons, where as feedly(Stream-Framework) assumes pickle serialization. Issue: When we add a...
See https://github.com/tschellenbach/Stream-Framework/issues/64 . LICENSE.txt says one thing, but setup.py says something else.
The link titled "Pinterest-style feed example app" in the README does not work.
How should I implement a custom ranking feed like those on getstream.io?
Hi guys, I am getting the following error on the celery worker. ``` [2018-08-06 18:47:58,069: INFO/MainProcess] Received task: stream_framework.tasks.fanout_operation_hi_priority[d736e5c6-2da0-4111-a076-16097163b1f5] [2018-08-06 18:47:58,073: WARNING/ForkPoolWorker-2] None [2018-08-06 18:47:58,073: WARNING/ForkPoolWorker-2] None [2018-08-06 18:47:58,073: WARNING/ForkPoolWorker-2]...
The docs have a great intro that [explains the technology buildup to arrive at inventing stream](https://github.com/tschellenbach/Stream-Framework/blob/master/docs/design.rst) but then it stops without explaining how stream uses Cassandra + Redis (plus celery...
I am currently running Stream-Framework with production data, and recently ran into an issue with how stream-framework serialize Aggregated Activities. In aggregated_activity_serializer.py, we have the line check_reserved(serialized, [';', ';;']) that...
As far as i can see, the current implementation only supports declaring words on the application level. Is there a way, or suggestion to get the verbs from any db?...
If i don't set async=False for manager methods i always get [Errno 61] Connection refused error. And for some framework methods i cannot specify that unless i override bunch of...