Reliable Queue 和 Reliable Dictionary 中项目的最大大小有限制吗?
Any limit on max size of item in Reliable Queue and Reliable Dictionary?
Service Fabric 可靠队列和可靠字典是否对队列或字典中每个添加项的最大大小有限制?
这不是硬性限制,而是性能方面的考虑,来自文档 here:
Consider keeping your items (for example, TKey + TValue for Reliable
Dictionary) below 80 KBytes: smaller the better. This reduces the
amount of Large Object Heap usage as well as disk and network IO
requirements.
另外,请参阅 一位 SF 团队成员的回答,其中解释了一些额外的容量限制。
Service Fabric 可靠队列和可靠字典是否对队列或字典中每个添加项的最大大小有限制?
这不是硬性限制,而是性能方面的考虑,来自文档 here:
Consider keeping your items (for example, TKey + TValue for Reliable Dictionary) below 80 KBytes: smaller the better. This reduces the amount of Large Object Heap usage as well as disk and network IO requirements.
另外,请参阅