exchange_declare($exchange, $type, $passive = false, $durable = false, $auto_delete = true, $internal = false, $nowait = false, $arguments = array(), ...
分类:
其他好文 时间:
2021-05-24 15:51:32
阅读次数:
0
LinkedList的全面说明: 1)LinkedList底层实现了双向链表和双端队列的特点 2)可以添加任意元素(可重复),包括null 3)线程不安全,没有实现同步 linkedList底层结构 LinkedList添加的源码分析 linkedlist.add(1); linkedlist.ad ...
分类:
其他好文 时间:
2021-05-24 15:34:54
阅读次数:
0
DHCP (Dynamic Host Configuration Protocol): An application-layer client-server protocol for allowing a device to automatically obtain an IP address. D ...
分类:
其他好文 时间:
2021-05-24 14:38:40
阅读次数:
0
1.nigin添加一段配置 server { listen 80; # this is the key !!!!! proxy_set_header Host $host; location /client/pids { proxy_pass http://10.103.13.103:3200/cl ...
分类:
编程语言 时间:
2021-05-24 14:35:17
阅读次数:
0
1. 操作系统版本 Red Hat Enterprise Linux Server release 7.2 (Maipo) 2. 下载软件包 去官网找了好久,但是没找到如何下载,于是找到了一个国内的地址 地址:http://mirrors.163.com/centos/7/os/x86_64/Pac ...
分类:
其他好文 时间:
2021-05-24 14:28:03
阅读次数:
0
1 idea File 》 Settings 》Editor 》File Endcoding 》 UTF-8 2 idea 》 Edit Configuration tomcat Server 》VM options 》-Dfile.encoding=UTF-8 3 tomcat\conf 》log ...
分类:
其他好文 时间:
2021-05-24 14:24:24
阅读次数:
0
🐉 大致介绍 本章讲解一下CAS,本质就是机器指令:cmpxchg+lock(根据处理器核数进行判断) 原子操作; 而在谈到并发操作里面,我们不得不谈到AQS,JDK的源码里面好多并发的类都是通过Sync(同步器)的内部类继承AQS而实现出五花八门的功能; 🐉 简单认识AQS 🐉 何为AQS? ...
分类:
编程语言 时间:
2021-05-24 14:01:29
阅读次数:
0
https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/windows-commands ...
分类:
其他好文 时间:
2021-05-24 13:45:24
阅读次数:
0
从一台Linux远程连接另一台linux上的MySQL, 出现ERROR 2003 (HY000): Can't connect to MySQL server on 'xxx.xxx.xxx.85'(111)错误。 [mysql@vvmvcs0 ~]$ mysql -hxxx.xxx.xxx.85 ...
分类:
数据库 时间:
2021-05-24 13:33:51
阅读次数:
0
最近参加了一次蚂蚁金服的面试,其中有两道笔试题,分别是手写事件总栈和手写模板引擎 手写模板引擎比较复杂,除了需要识别 {{data.name}} 这种基本情况之外, 还要兼顾 {{data.info[1]}}、{{data.others["about"]}} 于是先记录下手写事件总栈,后面再完善手写 ...
分类:
其他好文 时间:
2021-05-24 13:06:22
阅读次数:
0