+
+
+
+
+
+
+
+
+
+ 查询
+
+
+
+
+
+ {{ scope.row.instanceId }}
+
+
+
+
+ {{ scope.row.name + (scope.row.version ? ' (' + scope.row.version + ')' : '') }}
+
+
+
+
+
+ 最大耗时(ms)
+
+
+
+
+
+
+
+
+ {{ scope.row.avgTime.toFixed(1) }}
+
+
+
+
+
+
+
+
+ {{ scope.row.unsolvedErrorCount }}
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ props.row.errorMsg.substring(0, 50) }}...
+ {{ props.row.errorMsg }}
+
+
+
+
+
+
+
+ 标记解决
+
+
+
+
+
+
+
+
+
+
diff --git a/sop-common/sop-gateway-common/src/main/java/com/gitee/sop/gatewaycommon/bean/LRUCache.java b/sop-common/sop-gateway-common/src/main/java/com/gitee/sop/gatewaycommon/bean/LRUCache.java
new file mode 100644
index 00000000..9ea136d7
--- /dev/null
+++ b/sop-common/sop-gateway-common/src/main/java/com/gitee/sop/gatewaycommon/bean/LRUCache.java
@@ -0,0 +1,43 @@
+package com.gitee.sop.gatewaycommon.bean;
+
+import java.util.Collection;
+import java.util.LinkedHashMap;
+import java.util.Map;
+import java.util.function.Function;
+
+/**
+ * LRU缓存
+ * LinkedHashMap 本身内部有一个触发条件则自动执行的方法:删除最老元素(最近最少使用的元素)
+ * 由于最近最少使用元素是 LinkedHashMap 内部处理
+ * 故我们不再需要维护 最近访问元素放在链尾,get 时直接访问/ put 时直接存储
+ * created by Ethan-Walker on 2019/2/16
+ */
+public class LRUCache