期刊文献+
共找到8篇文章
< 1 >
每页显示 20 50 100
基于Socket的安全即时通讯软件的设计 被引量:11
1
作者 李延松 余隋怀 吴博 《科学技术与工程》 2007年第12期2974-2977,共4页
在开放式网络为人们远程通信带来便利的同时,也因为其先天存在的问题导致网络传输的安全性日益下降,开放式网络存在的安全问题越来越引起人们的广泛关注。如何保证敏感信息在网络上安全的传输成为一个重要的研究课题。基于网络通信的软... 在开放式网络为人们远程通信带来便利的同时,也因为其先天存在的问题导致网络传输的安全性日益下降,开放式网络存在的安全问题越来越引起人们的广泛关注。如何保证敏感信息在网络上安全的传输成为一个重要的研究课题。基于网络通信的软件在设计过程中就应该考虑到如何才能最大限度上对用户的敏感信息进行保护,本系统使用密码学中的DH(Diffie-Hellman)算法和DES算法,在Socket编程的基础上设计安全的即时通讯功能。 展开更多
关键词 DIFFIE-HELLMAN DES SERIALIZABLE
下载PDF
Java 2如何传送非Serializable的final对象 被引量:1
2
作者 曹大有 《计算机系统应用》 2005年第4期64-66,共3页
在Java中有很多非Serializable的final的对象,在默认条件下,它们是不能通过流的方式来完成持续性的。 本文则探讨了如何通过对象流的子类来完成这些类对象的Serializable。
关键词 Java2语言 非Serializable final对象 对象传送 系列化
下载PDF
A New Primary Lazy Update Propagation Protocol for Replicated Databases
3
作者 YANG Zhao-hong GONG Yun-zhan BI Xue-jun 《Wuhan University Journal of Natural Sciences》 EI CAS 2006年第1期263-268,共6页
This paper proposes a new primary lazy update protocol, PTCS (Primary Transaction Commit Schedule). In the PTCS protocol, a serializable primary transaction schedule is generated firstly and then the secondary trans... This paper proposes a new primary lazy update protocol, PTCS (Primary Transaction Commit Schedule). In the PTCS protocol, a serializable primary transaction schedule is generated firstly and then the secondary transactions are committed according to the serializable primary transaction schedule. PTCS protocol can guarantee serializability if the data copy graph contains no directed circles. It can also be ex tended to eliminate all requirements on the data copy graph. Compared to earlier works, PTCS protocol not only imposes a much weaker requirement on the data placement, but also avoids the deadlock caused by transaction waits and extra message overhead. The performance experiments show that the degradation of the performance caused by the replica man- agement of the PTCS protocol is tolerable. 展开更多
关键词 data replication global serializability data copy graph
下载PDF
Weak Serializable Concurrency Control in Distributed Real-Time Database Systems
4
作者 党德鹏 刘云生 潘琳 《Journal of Shanghai University(English Edition)》 CAS 2002年第4期325-330,共6页
Most of the proposed concurrency control protocols for real time database systems are based on serializability theorem. Owing to the unique characteristics of real time database applications and the importance of sa... Most of the proposed concurrency control protocols for real time database systems are based on serializability theorem. Owing to the unique characteristics of real time database applications and the importance of satisfying the timing constraints of transactions, serializability is too strong as a correctness criterion and not suitable for real time databases in most cases. On the other hand, relaxed serializability including epsilon serializability and similarity serializability can allow more real time transactions to satisfy their timing constraints, but database consistency may be sacrificed to some extent. We thus propose the use of weak serializability(WSR) that is more relaxed than conflicting serializability while database consistency is maintained. In this paper, we first formally define the new notion of correctness called weak serializability. After the necessary and sufficient conditions for weak serializability are shown, corresponding concurrency control protocol WDHP(weak serializable distributed high priority protocol) is outlined for distributed real time databases, where a new lock mode called mask lock mode is proposed for simplifying the condition of global consistency. Finally, through a series of simulation studies, it is shown that using the new concurrency control protocol the performance of distributed real time databases can be greatly improved. 展开更多
关键词 distributed real time database systems relaxed serializability real time concurrency control read only transactions.
下载PDF
Weak Serializable Concurrency Control in Real-time Broadcast Environments
5
作者 刘云生 Dang Depeng 《High Technology Letters》 EI CAS 2002年第4期64-68,共5页
Given the asymmetric communication capabilities in mobile real time environments, traditional serializability based approaches are too restrictive, unnecessary, and impractical. Thus propose the use of a new weaker co... Given the asymmetric communication capabilities in mobile real time environments, traditional serializability based approaches are too restrictive, unnecessary, and impractical. Thus propose the use of a new weaker correctness criterion is proposed. This paper first formally defines the new notion of correctness called weak serializability. After the necessary and sufficient conditions for weak serializability are shown, corresponding concurrency control protocol based on this criterion is outlined for real time broadcast environments. Finally, the simulation results confirmed that the proposed techniques help mobile transactions to meet their deadlines and improve query response time. 展开更多
关键词 REAL-TIME data broadcast REAL-TIME CONCURRENCY control relaxing serializability
下载PDF
如何进行Java对象的克隆
6
作者 钱宇虹 《软件工程师》 2011年第10期56-59,共4页
由于Java中的对象使用引用类型,所以没有直接的方法可以将对象的内容复制到一个新的对象。虽然java.lang.Object类的clone()方法为所有的引用类型提供了一套标准的克隆机制,但是对于深度克隆是较为麻烦的。本文给出了采用clone()方法实... 由于Java中的对象使用引用类型,所以没有直接的方法可以将对象的内容复制到一个新的对象。虽然java.lang.Object类的clone()方法为所有的引用类型提供了一套标准的克隆机制,但是对于深度克隆是较为麻烦的。本文给出了采用clone()方法实现浅克隆的案例,指出其局限性,然后提出采用序列化实现深克隆的方法和代码,最后指出了这种方法的缺陷。 展开更多
关键词 JAVA对象 浅克隆 深克隆 Clonable接口 Serializable接口
下载PDF
基于文件流的.NET串行化技术
7
作者 王雪峰 《铜陵学院学报》 2008年第5期72-72,74,共2页
.NET中的串行化能使编程人员获得一个对象的实例,并将它转换为一种易于在网络上传播或者在数据库、文件系统上存储的数据流格式,文章详细介绍了常用的串行化方法和各自优缺点。
关键词 串行化 XML SERIALIZABLE Deserialize
下载PDF
Timestamp reassignment:taming transaction abort for serializable snapshot isolation
8
作者 Ningnan ZHOU Xiao ZHANG Shan WANG 《Frontiers of Computer Science》 SCIE EI CSCD 2019年第6期1282-1295,共14页
Serializable snapshot isolation(SSI)is a promising technique to exploit parallelism for multi-core databases.However,SSI suffers from excessive transaction aborts.Existing remedies have three drawbacks:1)tracking proh... Serializable snapshot isolation(SSI)is a promising technique to exploit parallelism for multi-core databases.However,SSI suffers from excessive transaction aborts.Existing remedies have three drawbacks:1)tracking prohibitively transitive dependencies;2)aborting on every writewrite conflict;and 3)requiring manual annotation on transaction programs.In this paper,we propose to suppress transaction aborts by reassigning timestamps.We combine static analysis with augmented query plan.In this way,we save both aborts caused by read-write and write-write conflicts,without tracking transitive dependency and annotating transaction programs.As such,our approach does not exhibit drawbacks of existing methods.Extensive experiments demonstrate the effectiveness and practicality of our approach. 展开更多
关键词 serializable snapshot isolation timestamp reassignment static analysis augmented query plan
原文传递
上一页 1 下一页 到第
使用帮助 返回顶部