溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android事務(wù) IMMEDIATE與EXCLUSIVE模式

發(fā)布時間:2020-06-15 10:07:55 來源:網(wǎng)絡(luò) 閱讀:864 作者:小偉老師 欄目:移動開發(fā)

事務(wù)是數(shù)據(jù)庫保證數(shù)據(jù)唯一性和一致性的技術(shù),對于數(shù)據(jù)庫一個或一組寫操作要保證是一個原子操作就需要使用事務(wù),android使用事務(wù)的常見形式如下:


SQLiteDatabase db = null;
... 

db.beginTransaction();
try {
   db.setTransactionSuccessful();
   ...
} finally {
   db.endTransaction();
}


那么db.beginTransaction是一個什么操作? 我們來看下SQLiteDatabase的源碼:



/**
     * Begins a transaction in EXCLUSIVE mode.
     * <p>
     * Transactions can be nested.
     * When the outer transaction is ended all of
     * the work done in that transaction and all of the nested transactions will be committed or
     * rolled back. The changes will be rolled back if any transaction is ended without being
     * marked as clean (by calling setTransactionSuccessful). Otherwise they will be committed.
     */
    public void beginTransaction() {
        beginTransaction(null /* transactionStatusCallback */, true);
    }

/**
     * Begins a transaction in IMMEDIATE mode. 
     *Transactions can be nested. When
     * the outer transaction is ended all of the work done in that transaction
     * and all of the nested transactions will be committed or rolled back. The
     * changes will be rolled back if any transaction is ended without being
     * marked as clean (by calling setTransactionSuccessful). Otherwise they
     * will be committed.
     */
    public void beginTransactionNonExclusive() {
        beginTransaction(null /* transactionStatusCallback */, false);
    }

從注釋中可以看到beginTransaction的調(diào)用使用EXCLUSIVE mode, beginTransactionNonExclusive使用IMMEDIATE mode,以上兩個方法都是調(diào)用SQLiteDatabase的私有方法beginTransaction,兩個方法不同之處在于第二個實參true|false, 這個私有方法源碼:


private void beginTransaction(SQLiteTransactionListener transactionListener,
            boolean exclusive) {
        verifyDbIsOpen();
        lockForced(BEGIN_SQL);
        boolean ok = false;
        try {
           ...
            // This thread didn't already have the lock, so begin a database
            // transaction now.
            if (exclusive && mConnectionPool == null) {
                execSQL("BEGIN EXCLUSIVE;");
            } else {
                execSQL("BEGIN IMMEDIATE;");
            }
           ...
        } finally {
            if (!ok) {
                // beginTransaction is called before the try block so we must release the lock in
                // the case of failure.
                unlockForced();
            }
        }
    }

當形參exclusive為true并且mConnectionPool==null是執(zhí)行:execSQL("BEGIN EXCLUSIVE;");  false執(zhí)行execSQL("BEGIN IMMEDIATE;");


BEGIN EXCLUSIVE:當前事務(wù)在沒有結(jié)束之前任何android中的其他線程或進程都無法對數(shù)據(jù)庫進行讀寫操作。
BEGIN IMMEDIATE:確保android中其他線程或者進程之間讀取數(shù)據(jù)不能修改數(shù)據(jù)庫。

為什么需要判斷mConnectionPool==null這個條件,如果當mConnectionPool!=null 表示調(diào)用了enableWriteAheadLogging,也就是使用了WAL MODE。 使用WAL模式是能夠提高并發(fā)性,讀與寫互不阻塞,而執(zhí)行BEGIN EXCLUSIVE卻降低了并發(fā),互相矛盾,所以當以上兩個條件都成立的情況下執(zhí)行BEGIN EXCLUSIVE。


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI