• 调研打标(标签)的实现方式


    • mysql 存json,可行,

      • 建议存储标签格式为jsonArray

      • 最终实现为流过滤,代码实现举例

        • create table ep_test_json
          (
              id    int auto_increment
                  primary key,
              extra json null
          );
          INSERT INTO epower_atreus.ep_test_json (id, extra) VALUES (1, '[1, 2, 3, 4, 5, 6, 7]');
          INSERT INTO epower_atreus.ep_test_json (id, extra) VALUES (3, '[1, 2, 3, 4, 5, 6]');
          INSERT INTO epower_atreus.ep_test_json (id, extra) VALUES (5, '[1, 2, 3, 4, 5]');
          
        • @Data
          @EqualsAndHashCode(callSuper = false)
          @TableName(value = "epower_atreus.ep_test_json", autoResultMap = true)
          public class EpTestJson implements Serializable {
          
              @TableId(value = "id", type = IdType.AUTO)
              private Integer id;
          
              @TableField(typeHandler = FastjsonTypeHandler.class)
              private List<Integer> extra;
          
          
          }
          
        • final List<EpTestJson> list = jsonService.list().stream()
                          .filter(json -> json.getExtra().stream().anyMatch(i -> i == 7))
                          .collect(Collectors.toList());
          
      • 缺点是无法做索引,只能先查出全部数据然后逐一匹配

    • 关联表,可行,

      • 增加索引,
      • 缺点是会多占用一定的空间,可优化点是,在标签表增加主表的主键,这样仅需标签表设置索引列
    • 位移打标,可行,

      • 比如, 01010101,01000001,每个固定位置的1代表固定的标签,只要约定好位置信息,一个Int就足够存储标签了
      • 缺点是在数据库里对比数据时不方便比对
    今天你进步了吗?
  • 相关阅读:
    寒假学习日报20
    寒假学习日报19
    Centos firewalld开放端口
    Full GC回收详解
    JVM调优6大步骤
    JVM的方法区和永久带是什么关系?
    sql优化的几种方式
    sentinel-dashboard安装、运行(ubuntu)
    RocketMQ工作原理
    linux:nohup 不生成 nohup.out的方法
  • 原文地址:https://www.cnblogs.com/woooodlin/p/15184358.html
Copyright © 2020-2023  润新知