下一步计划

This commit is contained in:
2026-08-04 00:57:22 +08:00
parent cadc4c9067
commit 68476882a3
2 changed files with 4 additions and 0 deletions
+1
View File
@@ -56,6 +56,7 @@ private:
std::uint64_t cache_ver{};
std::atomic<std::uint64_t> render_ver{};
};
// SPSC
template <Has_State_Type That>
struct Triple_State_Strategy : That {
using State = typename That::State;
+3
View File
@@ -6,4 +6,7 @@ renderable 可以被渲染的基础元素
plot 上下文对象聚合所有策略
使用这个无锁的数据结构
https://github.com/boostorg/lockfree/tree/boost-1.91.0
使用MPSC的队列 之前用的都是错误的