文章分类 -  计算机技术

摘要:Cache public class Solution { public static void main(String... arg) { //cache Cache<String, String> cacher = CacheBuilder.newBuilder() .maximumSize(1 阅读全文
posted @ 2020-11-05 15:18 正义的五毛 阅读(90) 评论(0) 推荐(0)
摘要:简单使用 public class Solution { static BloomFilter integerBloomFilter = BloomFilter.create(Funnels.integerFunnel(), 500); static BloomFilter strBloomFilt 阅读全文
posted @ 2020-11-05 11:40 正义的五毛 阅读(75) 评论(0) 推荐(0)
摘要:简单使用 class Solution { public static void main(String... arg) { //创建 RateLimiter rateLimiter = RateLimiter.create(0.5); //修改 rateLimiter.setRate(100); 阅读全文
posted @ 2020-11-04 21:22 正义的五毛 阅读(77) 评论(0) 推荐(0)
摘要:Git clone +ssh地址 Git config -l 查看配置 ssh-keygen -t rsa -C “youremail@example.com" 本地生成 sshkey(建议不设置密码,不然每次pull或者push都要输入) 分支管理 Git init 初始化分支 Git branc 阅读全文
posted @ 2020-08-09 14:52 正义的五毛 阅读(45) 评论(0) 推荐(0)