Project

feedx

0.0
Low commit activity in last 3 years
A long-lived project that still receives updates
Use feeds to exchange data between (micro-)services.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

>= 0.8.0
 Project Readme

Feedx

Go reference GitHub release Go Report Card License

Warning

Deprecated. The Go package is superseded by depot — the same object-storage data exchange with a smaller, generics-based API (Produce / Subscribe). New Go code should use depot; see its migration guide. feedx is in maintenance mode and receives no new features. The Ruby library below has no depot equivalent yet and remains here.

Feed-based data exchange between services.

Usage (Ruby)

require 'bfs/s3'
require 'feedx'

# Init a new producer with an S3 destination
relation = Post.includes(:author)
producer = Feedx::Producer.new relation, 's3://my-bucket/feeds/users.json.gz'

# Push a new feed every hour
loop do
  producer.perform
  sleep(3600)
end