Type One Mood —— 24kGoldn + iann dior Type Two Type Three Fast Lane —— Palm Trees + MdL + Abi F Jones ...
分类:
其他好文 时间:
2021-06-28 19:01:24
阅读次数:
0
默认情况下,Redis的配置文件存放在redis主目录下,文件名为redis.conf,通过此文件,可窥探一二 1、绑定IP—bind 默认为本机:127.0.0.1,配置如下: # Examples: # # bind 192.168.1.100 10.0.0.1 # listens on two ...
分类:
其他好文 时间:
2021-06-25 16:51:17
阅读次数:
0
The current C++11 std::launch only has two modes: async or deferred. In a production system, neither is what you want: async will launch a new thread ...
分类:
编程语言 时间:
2021-06-18 18:48:54
阅读次数:
0
About two months ago we started using Rollbar to notify us of various errors in our Web App. Ever since then we have been getting the occasional error ...
分类:
其他好文 时间:
2021-06-17 16:44:39
阅读次数:
0
You are given two strings s and p where p is a subsequence of s. You are also given a distinct 0-indexed integer array removable containing a subset o ...
分类:
其他好文 时间:
2021-06-15 18:05:39
阅读次数:
0
简介 简单题, 但是挺考验java数据结构的 code class Solution { public int[][] merge(int[][] intervals) { if (intervals.length == 0) { return new int[0][2]; } Arrays.sor ...
分类:
其他好文 时间:
2021-06-07 20:43:01
阅读次数:
0
2PC 2PC(Two-phase commit protocol),中文叫二阶段提交。 二阶段提交是一种强一致性设计,2PC 引入一个事务协调者的角色来协调管理各参与者(也可称之为各本地资源)的提交和回滚,二阶段分别指的是准备(投票)和提交两个阶段。 这个举个例子,比如说咱们公司里经常tb(团建) ...
分类:
其他好文 时间:
2021-06-07 20:21:38
阅读次数:
0
说明: 作者:原文出处 答案基于mysql 8.0,自己写的,不一定正确。 20210604 题目: 两张表: id 是自动递增的主键,CandidateId 是 T0604A 表中的 id. 请编写 sql 语句来找到当选者的名字,即选票最多的候选者。上面的例子将返回当选者 B,因为他获得了2票, ...
分类:
数据库 时间:
2021-06-06 19:47:55
阅读次数:
0
LeetCode 2. Add Two Numbers(两数相加) 题目 链接 https://leetcode-cn.com/problems/add-two-numbers 问题描述 给你两个 非空 的链表,表示两个非负的整数。它们每位数字都是按照 逆序 的方式存储的,并且每个节点只能存储 一位 ...
分类:
其他好文 时间:
2021-06-06 18:53:03
阅读次数:
0
题目: https://ac.nowcoder.com/acm/problem/50940 参考的题解: https://blog.nowcoder.net/n/f7f7a3a1d5c44db8ab838ef2e2dbeaac 思路: 一个大根堆,一个小根堆,通过维护使两个堆的数量不超过1 这个格式 ...
分类:
其他好文 时间:
2021-06-05 17:38:39
阅读次数:
0