##基础##
- 对应层数据的名称
- Application Package
- Translation Segment
- Networking Packet
- DataLink Frame
- TCP是一种基于字节流的协议,TCP 中的ACK是接收端期待发送端下一个发来的数据包的序列号
- MSS 是在建立连接...
分类:
其他好文 时间:
2014-09-13 13:23:47
阅读次数:
442
SRC=Microprocessor Based Systems SRC=Computer Architecture: A Quantitative Approach
分类:
其他好文 时间:
2014-09-11 23:48:52
阅读次数:
279
改变内存空间的方法,主要就是set_fs(),get_ds()这两个函数来完成内存空间切换。一般定义的宏如下: #define BEGIN_KMEM {mm_segment_t old = get_fs();set_fs(get_ds())} #define END_KMEM {se...
分类:
其他好文 时间:
2014-09-11 22:06:42
阅读次数:
213
这两天有空翻了翻大神写的《innodb存储引擎》,手痒亲身实践。由于此书出版了有段时日,没有用其推荐的python工具,通过点滴推敲,略微发现其中冰山一角的奥秘。对于今后对于一些问题查证或数据迁移可能会有帮助。话不多说,开码。·大结构innodb数据文件按照 :【segment,extent,pag...
分类:
数据库 时间:
2014-09-10 13:57:40
阅读次数:
269
CREATE BIGFILE TABLESPACE "DEMO"
DATAFILE ‘+DATA‘
SIZE 256M
AUTOEXTEND ON
NEXT 256M
MAXSIZE UNLIMITED
LOGGING
EXTENT MANAGEMENT LOCAL
SEGMENT SPACE MANAGEMENT AUTO CREATE USER "DEMO" PROFIL...
分类:
数据库 时间:
2014-09-06 22:38:54
阅读次数:
235
Locally vs. Dictionary Managed Tablespaces整理自:http://www.orafaq.com/node/3.When Oracleallocates space to a segment (like a table or index), a group of...
分类:
数据库 时间:
2014-09-06 13:37:03
阅读次数:
286
Nowadays it is becoming increasingly difficult to park a car in cities successfully. Let's imagine a segment of a street as long as L meters along which
a parking lot is located. Drivers should park...
分类:
其他好文 时间:
2014-09-06 02:16:42
阅读次数:
286
OverviewWe can get SegFault by several reasons:aligned access to unaligned memory(usally see in ARM NEON)cross-border accessint temp[2] = {0};temp[2] ...
分类:
系统相关 时间:
2014-09-05 17:57:01
阅读次数:
296
//UISegmentedControl是iOS中的分段控件,其实就是多个button的组合视图,通过切换不同的segment(点击不同的button),响应不同操作//NSArray*titles=@[@"轻拍",@"长按",@"轻扫",@"平移"];//UISegmentedControl*segmentControl=[[UISegmentedControlalloc]initWithItems:titles];//..
分类:
其他好文 时间:
2014-09-05 03:22:51
阅读次数:
200
ORACLE 11G中有个新特性,当表无数据时,不分配segment,以节省空间 解决方法: 1、insert一行,再rollback就产生segment了。 该方法是在在空表中插入数据,再删除,则产生segment。导出时则可导出空表。 2、设置deferred_segment_creat...
分类:
数据库 时间:
2014-09-04 18:20:19
阅读次数:
278