服务器相关
stalendp
程序员一枚目前专注手机游戏Analysis gives way to art and science yields to magic
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
记录一些好的文章
J2EE Connector Architecture Introduction to the J2EE Connector Architecture Summary: IBM e-business Architect Willy Farrell provides a ha原创 2010-10-19 14:20:00 · 1096 阅读 · 0 评论 -
Connection Shareable测试
Connection Shareable是对XA资源的一个优化。 原因: XA资源的提交代价比较大,如果同一个应用(要求在同一个线程中)连续得到的两个XA链接都是同一个EIS时,那么就可以优化成一个连接,变为了LocalTransaction,提高了性能。 =====原创 2011-08-03 17:13:03 · 931 阅读 · 0 评论 -
glassfish的相关命令收集
========== JMS相关命令 ========== imqbrokerd -name MQBROKER -port 7676 -reset store imqcmd create dst -b localhost:7676 -n PhysicalQ原创 2011-08-23 14:44:00 · 1120 阅读 · 0 评论 -
[Unix]常用命令
进程的切换: 1) ./server & 进程后台运行 2) jobs 列举jobs 3) 把前台运行的程序放到后台运行 To place a foreground process in the background: suspend the foreground process (with Ctrl-z) then enter the bg command to mo原创 2013-09-17 00:11:28 · 1352 阅读 · 1 评论 -
【Server】Socket编程原理详解
这篇文章将对一个简单的socket例程进行剖析。 这里提供的例子就是一个简单的TCP client/server程序,client主动连接server,并从服务器中得到一条欢迎消息:“[server] welcome client!”。程序的流程参考如下: 参考代码如下: server端: #include #include #include #include #inc原创 2013-10-04 11:14:22 · 6244 阅读 · 1 评论
分享