{"id":25004983,"url":"https://github.com/projecttorreypines/fuseexchangeprotocol.jl","last_synced_at":"2026-02-12T06:33:15.873Z","repository":{"id":251116039,"uuid":"755405607","full_name":"ProjectTorreyPines/FuseExchangeProtocol.jl","owner":"ProjectTorreyPines","description":"FUSE eXchange Protocol","archived":false,"fork":false,"pushed_at":"2025-03-12T05:27:21.000Z","size":1081,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-11-10T03:26:59.357Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://projecttorreypines.github.io/FXP.jl/dev","language":"Julia","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ProjectTorreyPines.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-02-10T05:09:17.000Z","updated_at":"2025-03-12T05:25:55.000Z","dependencies_parsed_at":"2024-08-01T01:29:03.314Z","dependency_job_id":"62824cc6-1995-4780-a04c-5dd0946c0268","html_url":"https://github.com/ProjectTorreyPines/FuseExchangeProtocol.jl","commit_stats":null,"previous_names":["projecttorreypines/fuseexchangeprotocol.jl"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/ProjectTorreyPines/FuseExchangeProtocol.jl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProjectTorreyPines%2FFuseExchangeProtocol.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProjectTorreyPines%2FFuseExchangeProtocol.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProjectTorreyPines%2FFuseExchangeProtocol.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProjectTorreyPines%2FFuseExchangeProtocol.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ProjectTorreyPines","download_url":"https://codeload.github.com/ProjectTorreyPines/FuseExchangeProtocol.jl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProjectTorreyPines%2FFuseExchangeProtocol.jl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29360644,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T01:03:07.613Z","status":"online","status_checked_at":"2026-02-12T02:00:06.911Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-02-05T00:09:36.545Z","updated_at":"2026-02-12T06:33:15.857Z","avatar_url":"https://github.com/ProjectTorreyPines.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FuseExchangeProtocol.jl\n\nFUSE eXchange Protocol defines the handshake for processes interfacing with FUSE, for example for co-simulation purposes with a controller.\n\n```mermaid\nsequenceDiagram\n    autonumber\n    actor FUSE as Service Requestor\n    participant REDIS\n    actor TokSys as Service Provider\n\n    rect rgb(255, 223, 191)\n        TokSys--)REDIS: Register service X (subscribe to channel X)\n    end\n    \n    rect rgb(223, 255, 191)\n        FUSE--\u003eREDIS: Is service X available? (pubsub channels)\n    end\n\n    rect rgb(255, 191, 223)\n        FUSE-\u003e\u003eREDIS: del ID__X__req2pro\n        FUSE-\u003e\u003eREDIS: del ID__X__pro2req\n        FUSE--)TokSys: publish FUSE session ID to channel X\n    end\n    \n    loop\n        rect rgb(191, 223, 255)\n            FUSE-\u003e\u003e+REDIS: lpush service inputs\n            note over REDIS: ID__X__req2pro\n            REDIS-\u003e\u003e-TokSys: brpop service inputs\n        end\n        rect rgb(191, 223, 255)\n            TokSys-\u003e\u003e+REDIS: lpush service outputs\n            note over REDIS: ID__X__pro2req\n            REDIS-\u003e\u003e-FUSE: brpop service outputs\n        end\n    end\n```\n\n## FuseExchangeProtocol builds on top of REDIS\n* High Performance (operates in-memory) \u003c1ms latency when run locally\n* Support large data volumes (\u003c512 MB per message)\n* Distributed (ie. not geo-located)\n* Versatility of data structures (lists, queues, streams, timeseries,...) with atomic operations\n* Pub/Sub System\n* Synchronous / Asynchronous communication patterns\n* Supports multiple producers / consumers pattern\n* Horizontal and vertical scalability\n* Multi-language client libraries and open protocol\n* Used by Twitter, GitHub, Snapchat, Airbnb, Netflix\n* In comparison to other tools:\n   * Unlike Memcached, REDIS supports a wider range of data structures and persistence.\n   * While Kafka and RabbitMQ are more focused on message queuing and streaming, REDIS offers these capabilities along with its role as a data store and cache.\n    * Compared to database services like DynamoDB, REDIS can serve as a more immediate, low-latency layer for data access and manipulation.\n    * Unlike Hazelcast and etcd, which are more focused on distributed computing and configuration management respectively, REDIS offers a more general-purpose approach with its data structure support and performance.\n\n## Online documentation\nFor more details, see the [online documentation](https://projecttorreypines.github.io/FuseExchangeProtocol.jl/dev).\n\n![Docs](https://github.com/ProjectTorreyPines/FuseExchangeProtocol.jl/actions/workflows/make_docs.yml/badge.svg)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprojecttorreypines%2Ffuseexchangeprotocol.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprojecttorreypines%2Ffuseexchangeprotocol.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprojecttorreypines%2Ffuseexchangeprotocol.jl/lists"}