`
haoningabc
  • 浏览: 1476595 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

TT命令

阅读更多
★★★★★服务端
ttserver
Options feature the following.
-host name : specify the host name or the address of the server. By default, every network address is bound.
-port num : specify the port number. By default, it is 1978.
-thnum num : specify the number of worker threads. By default, it is 8.
-tout num : specify the timeout of each session in seconds. By default, no timeout is specified.
-dmn : work as a daemon process.
-pid path : output the process ID into the file.
-kl : kill the existing process if the process ID file is detected.
-log path : output log messages into the file.
-ld : log debug messages also.
-le : log error messages only.
-ulog path : specify the update log directory.
-ulim num : specify the limit size of each update log file.
-uas : use asynchronous I/O for the update log.
-sid num : specify the server ID.
-mhost name : specify the host name of the replication master server.
-mport num : specify the port number of the replication master server.
-rts path : specify the replication time stamp file.
-rcc : check consistency of replication.
-skel name : specify the name of the skeleton database library.
-mul num : specify the division number of the multiple database mechanism.
-ext path : specify the script language extension file.
-extpc name period : specify the function name and the calling period of a periodic command.
-mask expr : specify the names of forbidden commands.
-unmask expr : specify the names of allowed commands.

-----------------
ttservctl
start
stop
hup
----------------
ttulmgr
时间戳用date +%s察看 详细参考http://xok.la/2008/06/linux_date_transfer.html
date +%s得到时间戳,ps -ef|grep ttserver得到ttserver的sid
比如ttulmgr export -ts 1300000000 -sid 2065 /data/ttserver_cache/ulog/
ttulmgr export [-ts num ] [-sid num ] upath
Export the update log as TSV text data to the standard output.
ttulmgr import upath
Import TSV text data from the standard input to the update log.
Options feature the following.
-ts num : specify the beginning time stamp.
-sid num : specify the self server ID.

★★★★★★★★★客户端
tcrtest
tcrtest write [-port num ] [-cnum num ] [-tout num ] [-nr] [-rnd] host rnum
Store records with keys of 8 bytes. They change as `00000001', `00000002'...
tcrtest read [-port num ] [-cnum num ] [-tout num ] [-mul num ] [-rnd] host
Retrieve all records of the database above.
tcrtest remove [-port num ] [-cnum num ] [-tout num ] [-rnd] host
Remove all records of the database above.
tcrtest rcat [-port num ] [-cnum num ] [-tout num ] [-shl num ] [-dai|-dad] [-ext name] [-xlr|-xlg] host rnum
Store records with partway duplicated keys using concatenate mode.
tcrtest misc [-port num ] [-cnum num ] [-tout num ] host rnum
Perform miscellaneous test of various operations.
tcrtest wicked [-port num ] [-cnum num ] [-tout num ] host rnum
Perform updating operations of list and map selected at random.
tcrtest table [-port num ] [-cnum num ] [-tout num ] [-exp num ] host rnum
Perform miscellaneous test of the table extension.
Options feature the following.
-port num : specify the port number.
-cnum num : specify the number of connections.
-tout num : specify the timeout of each session in seconds.
-nr : use the function `tcrdbputnr' instead of `tcrdbput'.
-rnd : select keys at random.
-mul num : specify the number of records for the mget command.
-shl num : use `tcrdbputshl' and specify the width.
-dai : use `tcrdbaddint' instead of `tcrdbputcat'.
-dad : use `tcrdbadddouble' instead of `tcrdbputcat'.
-ext name : call a script language extension function.
-xlr : perform record locking.
-xlg : perform global locking.
-exp num : specify the lifetime of expiration test.

-----------------
tcrmttest
tcrmttest write [-port num ] [-tnum num ] [-nr] [-rnd] [-ext name] host rnum
Store records with keys of 8 bytes. They change as `00000001', `00000002'...
tcrmttest read [-port num ] [-tnum num ] [-mul num ] host
Retrieve all records of the database above.
tcrmttest remove [-port num ] [-tnum num ] host
Remove all records of the database above.
Options feature the following.
-port num : specify the port number.
-tnum num : specify the number of running threads.
-nr : use the function `tcrdbputnr' instead of `tcrdbput'.
-rnd : select keys at random.
-ext name : call a script language extension function.
-mul num : specify the number of records for the mget command.


-----
tcrmgr
tcrmgr inform [-port num ] [-st] host
Print miscellaneous information to the standard output.
tcrmgr put [-port num ] [-sx] [-sep chr ] [-dk|-dc|-dai|-dad] host key value
Store a record.
tcrmgr out [-port num ] [-sx] [-sep chr ] host key
Remove a record.
tcrmgr get [-port num ] [-sx] [-sep chr ] [-px] [-pz] host key
Print the value of a record.
tcrmgr mget [-port num ] [-sx] [-sep chr ] [-px] host [key ...]
Print keys and values of multiple records.
tcrmgr list [-port num ] [-sep chr ] [-m num ] [-pv] [-px] [-fm str ] host
Print keys of all records, separated by line feeds.
tcrmgr ext [-port num ] [-xlr|-xlg] [-sx] [-sep chr ] [-px] host func [key [value]]
Call a script language extension function.
tcrmgr sync [-port num ] host
Synchronize updated contents with the database file.
tcrmgr optimize [-port num ] host [params]
Optimize the database file.
tcrmgr vanish [-port num ] host
Remove all records.
tcrmgr copy [-port num ] host dpath
Copy the database file.
tcrmgr misc [-port num ] [-mnu] [-sx] [-sep chr ] [-px] host func [arg ...]
Call a versatile function for miscellaneous operations.
tcrmgr importtsv [-port num ] [-nr] [-sc] host [file]
Store records of TSV in each line of a file.
tcrmgr restore [-port num ] [-ts num ] [-rcc] host upath
Restore the database with update log.
tcrmgr setmst [-port num ] [-mport num ] [-ts num ] [-rcc] host [mhost ]
Set the replication master.
tcrmgr repl [-port num ] [-ts num ] [-sid num ] [-ph] host
Replicate the update log.
tcrmgr http [-ah name value] [-ih] url
Fetch the resource of a URL by HTTP.
tcrmgr version
Print the version information of Tokyo Tyrant.

Options feature the following.
-port num : specify the port number.-st : print miscellaneous status data.
-sx : input data is evaluated as a hexadecimal data string.
-sep chr : specify the separator of the input data.
-dk : use the function `tcrdbputkeep' instead of `tcrdbput'.
-dc : use the function `tcrdbputcat' instead of `tcrdbput'.
-dai : use the function `tcrdbaddint' instead of `tcrdbput'.
-dad : use the function `tcrdbadddouble' instead of `tcrdbput'.
-px : output data is converted into a hexadecimal data string.
-pz : do not append line feed at the end of the output.
-m num : specify the maximum number of the output.
-pv : print values of records also.
-fm str : specify the prefix of keys.
-xlr : perform record locking.
-xlg : perform global locking.
-mnu : omit the update log.
-nr : use the function `tcrdbputnr' instead of `tcrdbput'.
-sc : normalize keys as lower cases.
-mport num : specify the port number of the replication master.
-ts num : specify the beginning time stamp.
-rcc : check consistency of replication.
-sid num : specify the self server ID.
-ph : print human-readable data.
-ah name value : add a request header.
-ih : output response headers also.

分享到:
评论

相关推荐

    dos下的打字工具TT,dos一代人的经典啊!!!

    本来是dos下才能运行,这里推荐一种可以支持Windows的直接运行方法:1.下载一个DosBox解压,地址:...2.打开DosBox所在的文件夹,把TT资源的3个文件都复制到该文件夹里面。3.然后直接把TT.exe拖到DosBox上即可运行。

    等高线连接程序命令TT_等高线连接程序命令TT_

    标题“等高线连接程序命令TT”表明我们讨论的是一个特定的命令,可能是一个名为“TT”的自定义插件或内置功能,用于优化等高线的连接和显示。描述中的“等高线连接程序命令TT”进一步强调了这个命令的作用,即处理...

    tt打字+dosbox

    tt打字软件,附加dosbox;因为tt是很老的一个dos程序了,在windows下不能直接打开,需要安装dosbox。...该命令是指将E:\tt赋予虚拟c盘;执行命令: 》c: 转到虚拟c盘,再运行tt.exe,命令: 》tt.exe 即可打开tt。

    EPL命令测试zebra 888-tt 条码打印

    由于公司开发ERP条码管理功能,为了测试条码打印效果用VS2005开发了zebra 888-tt 通过EPL命令测试条码打印效果程序。主要用于打印纸张的校准,打印区域的设置,浓度和打印速度的设置,以及条码的位置和大小的设置

    arthas-doc3-5-4.zip

    6. **tt.html**: tt命令可能是用于时间旅行调试(Time Travel Debugging)的功能,它允许开发者回溯到过去某个时间点查看程序状态,对于复现和分析问题非常有帮助。 7. **profiler.html**: 这个文件可能详细介绍了...

    博思得打印机指令说明

    - **TT命令**:设置打印时间格式。 #### 六、小结 博思得打印机指令说明文档提供了丰富的条码打印机操作指南,覆盖了从基础的指令格式到复杂的图形绘制、标签打印等功能。对于希望深入了解并充分利用POSTEK品牌条码...

    DOS系统下TT打字游戏软件

    在那个图形用户界面(GUI)尚未普及的年代,DOS为用户提供了一种通过输入命令来执行各种任务的方式。DOS系统以其灵活性和可定制性,深受程序员和技术爱好者的喜爱。 TT打字游戏软件是在DOS环境下流行的一款打字练习...

    【CASS】程序命令TT.zip_Cass_appload插件应用_cass加载插件_cass小插件命令_mete77

    在IT行业中,尤其是在GIS(地理信息...`APPLOAD`命令是实现这一目标的关键,而"Mete77"和"程序命令TT.VLX"这样的插件则提供了具体的解决方案。在实际工作中,理解和掌握这些技能对于高效利用CASS进行测绘工作至关重要。

    Java异常诊断greys-anatomy.zip

    时间隧道,tt命令能以时间维度纪录下监控期内的每一次调用环境 多人并行协作 基于C/S架构的任务模式甚至能让多人同时远程到同一进程上执行不同的指令、脚本,非常适合团队一起进行线上问题...

    TT commander

    TT Commander还拥有强大的插件系统,用户可以通过安装各种插件扩展其功能,如支持更多文件类型、增加新的命令或者操作。这些插件涵盖了文件处理的各个方面,极大地增强了软件的灵活性和实用性。 在安全性方面,TT ...

    TT_DOS (DOS下的精典打字程序)

    在技术层面上,"TT_DOS"程序的运行依赖于DOS的批处理命令和文本处理能力。它通过读取预设的文本文件来生成练习内容,并通过DOS的屏幕输出功能展示给用户。用户输入的字符则通过键盘中断服务程序进行处理,与预设文本...

    小飞机游戏设计

    CAD中ap命令加载,然后输入tt命令,会有惊喜哦

    小巧的串口调试工具TT

    5. **控制命令发送**:支持发送特定的控制命令,如DTR、RTS信号的设置,对于某些需要控制信号的设备调试非常有用。 6. **文件传输**:TT还具备文件传输功能,可以将文件内容通过串口发送到目标设备,这对于固件更新...

    zebra 888-TT打印机编程

    本文通过对给定的VB代码片段的分析,介绍了如何使用Zebra 888-TT 打印机进行编程的基本方法,包括数据库操作、生成ZPL命令以及发送命令到打印机的过程。同时,还简要介绍了EPL2的相关指令,虽然在实际代码中没有使用...

    怀旧童年logo乌龟画画和tt打字游戏,已继承DOSBox,下载之后只要打开对应的bat文件即可运行

    包括logo乌龟绘画和tt打字游戏,已集成了DOSBox,下载之后只要打开对应的bat文件即可运行 所有文件如下: 运行logo.BAT ...运行dosbox后,在命令窗口里输入mount c: D:\tt 然后c: 最后运行一下TT.com就可以了

    VxWorks常用命令汇总

    在VxWorks中,有几个特别重要的命令可以帮助开发者进行调试和问题定位,包括但不限于`i`(inspect)、`tt`(trace task)、`ti`(trace interrupt)和`d`(dump)。 ##### 2.1 `i` (Inspect) - **功能**: 显示当前系统的...

    TTLeveleditor

    命令:python LevelEditorStart.py args:TT DD BR DG DL MM CC CL CM CS GS GZ OZ PA 现在使用此命令,因为我已经为 TTC 准备好了所有样式文件 python LevelEditorStart.py TT 来自 TTI src 的所有 pdna 代码和...

Global site tag (gtag.js) - Google Analytics