码迷,mamicode.com
首页 >  
搜索关键字:transactions    ( 327个结果
ActiveMQ(20):Consumer高级特性之重新投递(Redelivery Policy)
一、简介ActiveMQ在接收消息的Client有以下几种操作的时候,需要重新传递消息:1:Client用了transactions,且在session中调用了rollback()2:Client用了transactions,且在调用commit()之前关闭3:Client在CLIENT_ACKNOWLEDGE的传递模式下,在session中调用了recover()二、定..
分类:其他好文   时间:2017-05-09 17:46:11    阅读次数:1598
C#中的事务TransactionScope
TransactionOptions transactionOption = new TransactionOptions(); //设置事务隔离级别 transactionOption.IsolationLevel = System.Transactions.IsolationLevel.Seri ...
分类:Windows程序   时间:2017-05-08 14:29:06    阅读次数:744
事务的隔离性理解
事务处理之父Jim Gray对事务隔离性的定义: Isolation: Concurrently executing transactions see the stored information as if they were running serially (one after another ...
分类:其他好文   时间:2017-04-08 10:52:09    阅读次数:647
redis学习之——Redis事务(transactions)
Redis事务:可以一次执行多个命令,本质是一组命令的集合。一个事务中的,所有命令都会序列化,按顺序地串行化执行而不会被其它命令插入,不许加塞。 常用命令:MULTI 开启事务 EXEC 提交事务、 DISCARD 放弃事务 WATCH 监控事务 UNWATCH 取消监控事务 case1:正常执行 ...
分类:其他好文   时间:2017-03-29 01:22:39    阅读次数:227
LoadRunner中的一些性能名词解释
Transactions(用户事务分析):用户事务分析是站在用户角度进行的基础性能分析。1、TransationSunmmary(事务综述)对事务进行综合分析是性能分析的第一步,通过分析测试时间内用户事务的成功与失败情况,可以直接判断出系统是否运行正常。2、AverageTransacitonResponseTime..
分类:其他好文   时间:2017-03-08 16:26:52    阅读次数:128
redis事物
Redis 事务参考资料:http://www.runoob.com/redis/redis-transactions.htmlRedis 事务可以一次执行多个命令, 并且带有以下两个重要的保证:事务是一个单独的隔离操作:事务中的所有命令都会序列化、按顺序地执行。事务在执行的过程中,不会被其他客户端 ...
分类:其他好文   时间:2017-03-05 20:33:02    阅读次数:308
《深入理解java虚拟机-高效并发》读书笔记
Java内存模型与线程 概述 多任务处理在现代计算机操作系统中几乎已是一项必备的功能,多任务运行是压榨手段,就如windows一样,我们使劲的压榨它运行多个任务,俱要high又要耍。并发则是另外一种更具体的应用场景。每秒事物处理数(Transactions per Second,tps)是最重要的指 ...
分类:编程语言   时间:2017-02-28 20:48:44    阅读次数:306
mysqldump 备份某张表 Warning: A partial dump from a server that has GTIDs will by default include the GTIDs of all transactions,
[root@NB ok]# mysqldump -uemove -h xx.xx.xx.xx -P9906 DBname t_name -p >2t_tname.sqlWarning: A partial dump from a server that has GTIDs will by defau... ...
分类:数据库   时间:2017-02-22 23:01:49    阅读次数:2842
Cookies and Session Tracking Client Identification cookie与会话跟踪 客户端识别
w HTTP The Definitive Guide Cookies can be used to track users as they make multiple transactions to a web site. E-commerce web sites use session cook ...
分类:其他好文   时间:2017-02-14 11:40:52    阅读次数:172
ieee trans on energy conversion 2
Z. Wang, W. Wu and B. Zhang, "A Distributed Control Method With Minimum Generation Cost for DC Microgrids," in IEEE Transactions on Energy Conversion, ...
分类:其他好文   时间:2017-01-22 21:19:46    阅读次数:355
327条   上一页 1 ... 10 11 12 13 14 ... 33 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!