Latch
是Oracle
串行的并发访问内存的机制,也可以把latch
看成是lock
。当一个进程获取一个latch
时,它或者成功或者失败。但是失败后,进程不会释放CPU
,而是会继续尝试获取latch
(具体行为取决于mode
)。
参考资料:
Latches and Latch Contention;
Latch and Mutex ContentionTroubleshooting in Oracle。
Latch
是Oracle
串行的并发访问内存的机制,也可以把latch
看成是lock
。当一个进程获取一个latch
时,它或者成功或者失败。但是失败后,进程不会释放CPU
,而是会继续尝试获取latch
(具体行为取决于mode
)。
参考资料:
Latches and Latch Contention;
Latch and Mutex ContentionTroubleshooting in Oracle。
/etc/hosts
文件保存IP
地址和hostname
之间的映射。格式是:IP
地址 canocial_hostname
name
。举例如下:
127.0.0.1 localhost
192.168.1.10 foo.mydomain.org foo
192.168.1.13 bar.mydomain.org bar
146.82.138.7 master.debian.org master
209.237.226.90 www.opensource.org
尽管现在host table
已经被DNS
取代了,但是有时在bootstrapping
,NIS
和隔离节点的环境下仍然会用到/etc/hosts
。
修改/etc/hosts
文件可以马上生效,但有时需要清空程序的缓存。
参考资料:
hosts。