本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- zysnba
- xiangjie88
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sichunli_030
- sam123456gz
- 龙儿筝
- arpenker
- tanling8334
- kaizi1992
- gaojingsong
- xpenxpen
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- jbosscn
- mengjichen
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- kingwell.leng
- mwhgJava
最新文章列表
The rapid development of the game server.
Many people are obsessed with the game, and as a developer, like their own games nature is not in the minority. But the development of a bit of the scale of the game, in addition to the main game logic ...
java编码与protobuf使用
1、为什么需要编码
计算机中存储信息的最小单元是一个字节即 8 个 bit,所以能表示的字符范围是 0~255 个;人类要表示的符号太多,无法用一个字节来完全表示;要解决这个矛盾必须需要一个新的数据结构 char,从 char 到 byte 必须编码。
2、各种常见编码的简介
ASCII 码
学过计算机的人都知道 ASCII 码,总共有 128 个,用一个字节的低 7 位表示 ...
protobuf
c++参考
https://developers.google.com/protocol-buffers/docs/cpptutorial?hl=zh-CN
http://www.cppblog.com/woaidongmao/archive/2009/06/23/88391.aspx
https://developers.google.com/protocol-buffers/docs/enc ...
protobuf与stream的简单比较
使用protobuf与传统的stream作比较
1.协议模型:
package tutorial;
option java_package = "com.example.tutorial";
option java_outer_classname = "RoleTest";
message Role {
optional int64 id = ...
protobuf简单写入和读入例子
package protobuf.proto;
option java_outer_classname = "HtmlThemeProtos";
message HtmlTheme {
required int32 id = 1;
optional string title = 2;
optional string data = 3;
}
...
Netty + Protobuf 的客户端模式运用和问题探讨
使用NETTY之前,当然需要先看一下所带的samples。
简单的hello world,可能大家都没啥感觉,觉得NETTY其实很简单:
1. 对于服务器端,需要写下面几个:
a. 写个ServerHandler,来接收并处理服务端业务逻辑;
b. 照葫芦画瓢整个Pineline,比如ServerPipelineFactory,把一些现成的和自己的ServerHandler串 ...
protobuf安装后出现libprotobuf.so.6 not found after installation
Please follow the instructions in README.txt:
** Hint on install location **
By default, the package will be installed to /usr/local. However,
on many platforms, /usr/local/lib is not part of LD ...
Google Protocol Buffers
首先,protobuf是一个开源项目(官方站点在“这里 ”),大家可以看出它的后台有多硬了。那这个东西到底能干什么?简单地说,它和xml、json差不多,也是把某种数据结构的信息,以某种格式保存起来。主要用于 数据存储、传输协议格式等场合。
protobuf有啥特色?
1、性能好/效率高
这也是谷歌放着好好的xml不用,而重新造轮子的原因。在时间开销方面:xml格式化(序列化)的开销 ...