Concurrent Call Level Interfaces Based on an Embedded Thread Safe Local Memory Structure
Pereira, O.
;
Aguiar, R.
Concurrent Call Level Interfaces Based on an Embedded Thread Safe Local Memory Structure, Proc International Conf. on Software Engineering and Knowledge Engineering - SEKE, Pittsburgh, United States, Vol. , pp. 129 - 134, July, 2017.
Digital Object Identifier: 10.18293/SEKE2017-120
Download Full text PDF ( 715 KBs)
Abstract
Performance is traditionally considered one of the most significant concerns in intensive database applications. Several architectural tactics may be taken to minimize the possibility of coming across with any performance bottleneck. One of them is the usage of Call Level Interfaces (CLI). CLI are low level API that provide a high performance environment to execute SQL statements on relational and also on some NoSQL database servers. In spite of this, CLI are not thread safe, this way preventing distinct threads from sharing datasets retrieved from databases through Select statements. Thus, in situations where two or more threads need to access datasets retrieved from the same Select statement, there is no other alternative than providing each thread with its own dataset, this way consuming important computational resources. In this paper we propose a new design for CLI to overcome the aforementioned drawback. Unlike current implementations of CLI, now they are natively thread-safe. The implementation herein presented is based on a thread safe updatable local memory structure where data retrieved from databases is kept. A proof of concept based on Java Database Connectivity type 4 (JDBC) for SQL Server 2008 is presented and also a performance assessment.