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.
我的JSON文件内容可以具有无限大小(或受最大String长度 Integer.MaxValue 限制)。
JSON
String
我怎样才能最好地将这个文件保存到数据库?就像一个String?或者是否有特定的“大”数据类型来存储这些类型的数据?我不想将 json 对象自己保存到 db,而只是将整个内容。
CLOB 或 BLOB 是我所知道的大多数关系数据库的选择。
总有一些限制;请参阅您的数据库供应商文档。
“最佳”是一个有趣的术语。在 INSERT 之前加密或压缩数据是否为您提供了良好的服务?
您将无法在 JSON 中轻松搜索子值。这符合你的要求吗?