首页 > 2015年10月15日 > 全部分享
Thrift-0.9.3的多服务接口实现
上篇文章讲了单服务接口的实现,如果有多个接口怎么办? 还好thrift的后续版本提供了,下面就来说下怎么实现, 这里参考了文章: http://blog.csdn.net/hivon/article/details/11681977 服务端 package?service.s...
分类:其他   时间:2015-10-15 10:12:56    收藏:0  评论:0  赞:0  阅读:330
keepalived 安装
官网地址:http://www.keepalived.org/ 官网文档:http://www.keepalived.org/documentation.html Keepalived的作用是检测web服务器的状态,如果有一台web服务器死机或工作出现故障 Keepalived将检测到,并将有故...
分类:其他   时间:2015-10-15 10:12:52    收藏:0  评论:0  赞:0  阅读:412
tomcat中修改jvm的,编码
项目中遇到一个问题? 服务器运行在tomcat中,有一个字符串需要加密输出来,包含中文,环境在本机用eclipse做的时候没有任何问题,可是一放到服务器上因为服务器系统编码是gbk的,所以就会出现乱码? 解决办法:?...
分类:其他   时间:2015-10-15 10:12:24    收藏:0  评论:0  赞:0  阅读:291
Django+SAE个人博客 三
在第二节中,生成http://jackerb.sinaapp.com/admin,显示如下: 但是在本地效果不是这样的,如下: 这是怎么回事呢,这是因为SAE上没有本地的一些js了,css之类的东西,虽然我也不知道这些东西是干什么用的。但是...
分类:其他   时间:2015-10-15 10:12:20    收藏:0  评论:0  赞:0  阅读:388
学习日志---linux打卡10
练习:写一脚本,实现如下功能: 1、让用户通过键盘输入一个用户名 2、如果用户存在,就显示其用户名和UID; 3、否则,就显示用户不存在; #!/bin/bash read-t10-p"Enterausername:"userName-t是等待时间 #userName=${userName:-root}不输入则使用默认值 ifid$userName&>..
分类:系统服务   时间:2015-10-15 10:11:32    收藏:0  评论:0  赞:0  阅读:275
迁移微软CA的证书 (1)
最近豆子需要清理一下公司的PKI服务器。由于历史原因,公司之前内网里面搭建了2台EnterpriseRoot级别的CA服务器,老板让我再搭建一个新的,然后把之前的2台处理掉。微软的AD环境里面是允许同时搭建多个PKI结构的,不过这样导致的后果就是可能客户端申请证书的时候会随机申请一..
分类:其他   时间:2015-10-15 10:11:22    收藏:0  评论:0  赞:0  阅读:427
集群及系统扩展基础
linuxcluster扩容例如:web站点键入网址后3s内必须响应,经统计若3s后响应将流失40%用户,10s后流失70%用户解决方案:Scaleup:向上扩展/垂直扩展Scalleout:向外扩展/横向扩展director/dispatcher/loadbalancer调度器/分发器/负载均衡器系统指标可扩展性:是否便于扩展可用性:..
分类:其他   时间:2015-10-15 10:11:12    收藏:0  评论:0  赞:0  阅读:181
访学生活
转眼已是10月中旬,从9月21号来到北邮,中间十一假期又回家待了老长时间,直到10月11号重回北京,至此访学生活才慢慢步入正轨。这些时间主要就是在适应和寻找方向。首先是生活上。我以近不惑之龄又重回大学校园,重新过起了集体生活,一开始是各种的不习惯。要住5人的集体宿舍..
分类:其他   时间:2015-10-15 10:11:02    收藏:0  评论:0  赞:0  阅读:202
数据持久化———CoreData
1.Coredata使用面向对象的方式操作数据,用来解决与对象生命周期管理,对象关系图管理和持久化等方面相关的问题2.使用coreData的版本偏移问题对数据模型进行版本管理数据迁移:不同版本数据模型之间进行转换的机制轻量级迁移标准迁移轻量迁移和标准迁移的区别:CoreData支持两种..
分类:其他   时间:2015-10-15 10:10:22    收藏:0  评论:0  赞:0  阅读:200
Swipebox
下载地址:http://brutaldesign.github.io/swipebox/<!DOCTYPEhtml> <htmllang="en"> <head> <metahttp-equiv="Content-Type"content="text/html;charset=utf-8"> <metaname="viewport"content="width=device-width,initial-scale=1,maximum-scale=1..
分类:其他   时间:2015-10-15 10:09:42    收藏:0  评论:0  赞:0  阅读:386
本地通知
//本地通知,只有程序处于非运行状态,才会出发本地通知//1.创建本地通知的对象UILocalNotification*notification=[[UILocalNotificationalloc]init];//2.设置通知触发的时间notification.fireDate=[NSDatedateWithTimeIntervalSinceNow:5];//3.设置弹出提示的内容notification...
分类:其他   时间:2015-10-15 10:09:32    收藏:0  评论:0  赞:0  阅读:291
Everything 本地磁盘文件搜索工具下载!
如何运用布尔算子?AND(且)是缺省使用的布尔算子。例如:如果要搜索foo和bar同时出现的文件:foobar如果从两者之中任一个都可以,则用|介于两者之间。例如:如果要搜索.jpg或.bmp文件:.jpg|.bmp(注:在|两侧有空格)。如何运用通配符?通配符*可以匹配任意长度和类型的字符..
分类:其他   时间:2015-10-15 10:09:22    收藏:0  评论:0  赞:0  阅读:227
nginx+tomcat+mysql模板配置
nginx+tomcat+mysql模板配置说明:nginx+tomcat+mysql全部安装在一台云服务器上,然后对其做一个镜像服务器配置:ucloud云服务器centos6.564位cpu:4核内存:8G软件版本:nginx-1.8.0.tar.gzapache-tomcat-7.0.64.tar.gzjdk-7u80-linux-x64.rpmmysql-5.6.27.tar.gz安装jdk:软..
分类:数据库技术   时间:2015-10-15 10:09:12    收藏:0  评论:0  赞:0  阅读:217
ocp-410
QUESTION NO: 410? You executed the following commands: SQL> ALTER SESSION SET OPTIMIZER_USE_PENDING_STATISTICS = false; SQL> EXECUTE DBMS_STATS.SET_TABLE_PREFS(‘SH’, ‘CUSTOMERS’, ‘PUBLISH’,’false’);...
分类:其他   时间:2015-10-15 10:08:32    收藏:0  评论:0  赞:0  阅读:258
ocp-407
QUESTION NO: 407 Which statements are true regarding the Query Result Cache? (Choose all that apply.) A. It can be set at the system, session, or table level. B. It is used only across statements in...
分类:其他   时间:2015-10-15 10:08:11    收藏:0  评论:0  赞:0  阅读:157
ocp-406
QUESTION NO: 406 You specify a nonzero value for the MEMORY_TARGET initialization parameter, but do not set the PGA_AGGREGATE_TARGET or the SGA_TARGET parameters. You restart your database instance....
分类:其他   时间:2015-10-15 10:08:01    收藏:0  评论:0  赞:0  阅读:258
ocp-405
QUESTION NO: 405 You are tuning RMAN to optimize performance. You want tape I/O to be asynchronous when you perform tape backups. Which action should you take? A. Set the BACKUP_TAPE_IO_SLAVES para...
分类:其他   时间:2015-10-15 10:07:52    收藏:0  评论:0  赞:0  阅读:331
ocp-404
QUESTION NO: 404 Which statement about the enabling of table compression in Oracle Database 11g is true?A. Compression can be enabled at the table, tablespace, or partition level for direct loads only...
分类:其他   时间:2015-10-15 10:07:42    收藏:0  评论:0  赞:0  阅读:125
ocp-409
QUESTION NO: 409 You want to enable resumable space allocation at the instance level.Which two actions would enable resumable space allocation at the instance level? (Choose two.) A. issuing the ALTE...
分类:其他   时间:2015-10-15 10:07:32    收藏:0  评论:0  赞:0  阅读:205
ocp-402
QUESTION NO: 402 Examine the following PL/SQL block: SET SERVEROUTPUT ON SET LONG 10000 DECLARE report clob; BEGIN report := DBMS_SPM.EVOLVE_SQL_PLAN_BASELINE();DBMS_OUTPUT.PUT_LINE(report); END...
分类:其他   时间:2015-10-15 10:07:22    收藏:0  评论:0  赞:0  阅读:358
1840条   上一页 1 ... 75 76 77 78 79 ... 92 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!