Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过序列化它们在 LONGTEXT 字段中存储了一些非常巨大的动态数组。我担心我们很快就会达到单个字段(4GB)的存储限制。一旦第一个几乎满了,我已经创建了另一个列来为用户存储数据。
有没有办法检查一个字段的内容有多少空间已被使用,然后我可以用它来决定是否在该列或下一列中放置更多数据?拉出字符串并计算字符并除以2 ^ 32-1的最简单方法是什么?这是最快的方法吗?
谢谢。