打赏
Fork me on GitHub
摘要: package org.lcoil.drools.demo.utils; import com.google.common.collect.Lists; import org.apache.commons.lang3.StringUtils; import org.eclipse.jgit.api. 阅读全文
posted @ 2022-02-19 13:42 l-coil 阅读(53) 评论(0) 推荐(0) 编辑
摘要: <!-- jfreechart begin --> <dependency> <groupId>org.jfree</groupId> <artifactId>jcommon</artifactId> <version>1.0.24</version> </dependency> <dependen 阅读全文
posted @ 2022-02-18 22:57 l-coil 阅读(520) 评论(0) 推荐(1) 编辑
摘要: https://mac.macsc.com?id=MTQwOTE0 阅读全文
posted @ 2022-01-01 21:50 l-coil 阅读(467) 评论(0) 推荐(0) 编辑
摘要: package mytest; import java.util.Arrays; /** * @author :l_coil * @date :2021/12/11 9:41 下午 */ public class QuickSort { public static void main(String[ 阅读全文
posted @ 2021-12-12 10:33 l-coil 阅读(39) 评论(0) 推荐(0) 编辑
摘要: package mytest; import java.util.Arrays; /** * @author :l_coil * @date :2021/12/11 9:29 下午 * 归并排序 */ public class MergeSort { public static void main( 阅读全文
posted @ 2021-12-12 10:32 l-coil 阅读(12) 评论(0) 推荐(0) 编辑
摘要: import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.sun.org.apache.xpath.inter 阅读全文
posted @ 2021-08-13 19:43 l-coil 阅读(80) 评论(0) 推荐(0) 编辑
摘要: import lombok.extern.slf4j.Slf4j; import org.slf4j.Logger; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader 阅读全文
posted @ 2021-08-13 19:41 l-coil 阅读(65) 评论(0) 推荐(0) 编辑
摘要: LRU是什么 按照英文的直接原义就是Least Recently Used,最近最久未使用法,它是按照一个非常著名的计算机操作系统基础理论得来的:最近使用的页面数据会在未来一段时期内仍然被使用,已经很久没有使用的页面很有可能在未来较长的一段时间内仍然不会被使用。基于这个思想,会存在一种缓存淘汰机制, 阅读全文
posted @ 2020-10-18 14:37 l-coil 阅读(188) 评论(1) 推荐(0) 编辑
摘要: 前言 Memcached 是一种基于内存的key-value存储,用来存储小块的任意数据(字符串、对象)的一个高性能的分布式内存对象缓存系统,其存储性能在某些方面不比redis差,甚至在文本类型数据的存储上性能略优于redis,本文将介绍如何在springboot中集成memcached。 准备工作 阅读全文
posted @ 2020-09-19 15:19 l-coil 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 十大经典排序算法(动图演示) redis总结 阅读全文
posted @ 2020-07-19 20:01 l-coil 阅读(111) 评论(0) 推荐(0) 编辑