@NotNull @Indexed(unique=true) private String content;
对bean中内容属性content建立索引,当插入content字段的值大于1024字节时插入失败
mongodb 对字段中有超过 1024 字节的不会建立索引,但是可以使用text 索引或者hashed 索引来实现。
@NotNull @Indexed(unique=true) private String content;
对bean中内容属性content建立索引,当插入content字段的值大于1024字节时插入失败
mongodb 对字段中有超过 1024 字节的不会建立索引,但是可以使用text 索引或者hashed 索引来实现。
转载于:https://www.cnblogs.com/rookietoboss/p/11153059.html