KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
distributed-tx-notification
★ 17
Open GitHub ↗
简单的分布式交易通知服务
Download README (.md)
Explore Similar Repositories
CodeWalker.API
:
Local API for Codewalker to automate model extraction.
PolyflowAutoBot-NTE
:
No description available.
XCXDE-ModLoader
:
exlaunch plugin for loading files outside of sts.ard in Xenoblade Chronicles X: Definitive Edition
tauri-plugin-machine-uid
:
Tauri Plugin for retrieving machine UID
FsMath
:
FsMath is a lightweight maths library designed for modern F# workflows
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
distributed-tx-notification
?
Download (.md)
# Distributed Transaction Notification ## 问题描述 交易所需要实时通知用户订单状态(已提交、已撮合、已取消等)。 ## 设计要点 * 架构:发布-订阅模型(`Pub/Sub`),可以用`Redis`或`Kafka`作为消息队列。 * 并发:每个用户连接一个`Goroutine`,监听其状态变化。 * 推送:`WebSocket`或`Server-Sent Events`(`SSE`)实现实时推送。 * 容错:断线重连机制,状态持久化到数据库。