记录许总演讲PPT指出的实践:channel– 本质上是一个 MessageQueue– 非常正统的执行体间通讯设施? sync.Mutex/RWMutex/Cond/etc– 不要把 channel 当做万金油,该 Mutex 还是要? 误区– 用 channel 来做互斥 ( 正常应该让 Mut...
分类:
其他好文 时间:
2014-09-12 16:39:53
阅读次数:
181
// 触发器create or replace trigger tr_sync_BD_MARBASCLASSafter INSERT or UPDATEon BD_MARBASCLASS for each rowdeclare v_cnt integer;PRAGMA AUTONOMOUS_TRAN...
分类:
数据库 时间:
2014-09-11 13:48:11
阅读次数:
361
实验01:NFS服务器配置实验目标将/root共享给192.168.10.20,可写、同步,允许客户机以root权限访问NFS服务端操作实验步骤环境准备:作为nfs服务器的主机一台,客户机一台1.配置共享文件[root@localhost~]#vim/etc/exports/root192.168.10.20(rw,sync,no_root_squash)2.启用por..
分类:
其他好文 时间:
2014-09-11 02:24:52
阅读次数:
186
描述一下情况,有一个数据库xiyouzyadlog用sync授权,结果我在授权的时候授权给了xiyoumainTXZYANDROID所有权限,
导致sync用户登陆能看到所有的数据库,于是删除sync用户结果sync登陆后依然能看到所有的数据库包括mysql,然后百度查看mysql的授权,结果出现下面的结果,下面就..
分类:
数据库 时间:
2014-09-09 18:34:40
阅读次数:
200
学习云风的skynet源代码,简单记录下。void skynet_globalmq_push(struct message_queue * queue) { struct global_queue *q= Q; uint32_t tail = GP(__sync_fetch_and_add(&q->...
分类:
Web程序 时间:
2014-09-06 17:24:23
阅读次数:
228
package sync;
public class Test {
public static void main(String[] args) {
Test test = new Test();
//Factory factory = Factory.getInstance();
Producer producer = test.new Producer();
produc...
分类:
编程语言 时间:
2014-09-06 12:30:43
阅读次数:
214
1.tp driver的tpd_down()和tpd_up()函数中不需要上报id号,上层会自动进行匹配;
2.tpd_up()函数中只需要上报BTN_TOUCH和mt_sync信息,其他信息不用上报,如下:
static void tpd_up(int x, int y,int *count)
{
input_report_key(tpd->dev, BTN_TOUCH, ...
分类:
移动开发 时间:
2014-09-04 09:47:07
阅读次数:
283
Linux的计划任务分为两类:1,一次性执行:常用命令:at,batch,依赖于atd服务2,周期性执行:常用命令:crontab,依赖于crond服务一次性任务执行:用法:#atTIME
at>/bin/sync输入需要执行的命令或脚本
at>“Ctrl+d”输入Cry+d提交任务TIME:的几种格式#atnow+3min相对..
分类:
系统相关 时间:
2014-09-04 03:05:48
阅读次数:
282
Go to File > Settings > Gradle you will end up with this screen for setting up your gradle :Also make sure you have Google Repository in your Android ...
分类:
其他好文 时间:
2014-09-03 16:22:26
阅读次数:
238
在sts中,启动run on server时或查看项目文件时报错:Resource is out of sync with the file system: ....这是文件系统不同步的问题,是因为在eclipse或mycelipse之外对工程中的resource进行修改引起的(或者是由不同的系统间...
分类:
其他好文 时间:
2014-09-03 00:05:35
阅读次数:
282