首次接受这个项目,看了微信的API,云里雾里,经过几经测试,理清思路开发者自个申请,微信API给出四个参数:下面我解释下signature 是微信加密签名 即:微信服务器将 timetamp nonce token(你提交的)使用SHA1加密后 会使用GET方式发送给你。timestamp是腾讯服务...
分类:
微信 时间:
2014-07-15 00:59:51
阅读次数:
556
How to check if NSString begins with a certain characterHow do you check if an NSString begins with a certain character (the character *).The * is an ...
分类:
其他好文 时间:
2014-07-14 20:51:24
阅读次数:
177
1.atomicity 原子性 数据库中的执行要么都完成,要么失败。2.consistency 一致性 通过一些约束(主键,外键,唯一性,check等)来保证数据跟业务一致。3.isolation 隔离性 事务执行不相互干扰,一个事务不能看到另一个事务运行时的某一刻的数据。 隔离性的等级分为:rea...
分类:
其他好文 时间:
2014-07-14 19:03:05
阅读次数:
223
Memcached从1.2.4版本新增CAS(Check and Set)协议,用于处理同一个ITEM(key-value)被多个session更新修改时的数据一致性问题。
你曾经是否也有想知道memcached里面都存了哪些数据的需求,你是否也曾经在寻找一个方法能像redis一样可以遍历memcached所有的key...
分类:
其他好文 时间:
2014-07-14 17:12:19
阅读次数:
226
打开数据服务netstartmssqlserver关闭数据服务netstopmssqlserver创建数据库createdatabase数据库名引用数据库Use数据库名创建表createtable表名约束--primarykey主键--identity自动增长--default默认--check约束--notnull不为空删除表delete表名--delete删除表内容droptable表..
分类:
数据库 时间:
2014-07-14 11:48:49
阅读次数:
266
Implement a function to check if a binary tree is a binary search tree./* The inorder travel of a BST is strictly increasing. We track the pre node of...
分类:
其他好文 时间:
2014-07-13 22:27:09
阅读次数:
344
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).
For example, this binary tree is symmetric:...
分类:
其他好文 时间:
2014-07-13 17:13:49
阅读次数:
213
前言:nagios界面上,看到监控mysql服务报错如下:Warning:NRPE: Unable to read output 1,去nagios监控服务器上check下1.1,执行check_nrpe命令远程调用在监控端nagios服务器上执行check_nrpe检查mysql状态报错如下:[root@mysqlvm2 ~]# /usr/lib/nagios/plugins/check_nr...
分类:
移动开发 时间:
2014-07-13 16:40:37
阅读次数:
232
Given two binary trees, write a function to check if they are equal or not.
Two binary trees are considered equal if they are structurally identical and the nodes have the same value.
/**
* Defin...
分类:
其他好文 时间:
2014-07-13 15:50:25
阅读次数:
158
1.先用表格列举一下我的监控对象和阀值:监控对象监控阀值主机资源主机存活:check_ping-w3000.0,80%-c5000.0,100%-p5(3000毫秒响应时间内,丢包率超过80%报警告,5000毫秒响应时间内,丢包率超过100%报危急,一共发送5个包)登录用户:check_user-w5-c10(w为警告,c为危急)系..
分类:
移动开发 时间:
2014-07-13 14:38:23
阅读次数:
587