saveToCache Method

Summary

Saves the document to the cache.

Syntax

JavaScript Syntax
saveToCache = function(document) 
TypeScript Syntax
static saveToCache(document: Document): JQueryPromise<Document>; 

Parameters

document

The document to save. Must not be null.

Return Value

A Promise object that may resolve successfully to a Document object, or fail if the Document cannot be saved to the cache.

Remarks

<returns> A Promise object that may resolve successfully to a Document object, or fail if the Document cannot be saved to the cache. </returns>

Documents can contain large number of pages and huge amount of data. Storing all this data in the physical memory is not feasible in most situations. Therefore, the Document class was designed to use an external caching system to store the modified.

SaveToCache can be used to save a document to the cache and re-loading it using DocumentFactory.LoadFromCache.

The document is only saved into the cache if the value of CacheStatus is DocumentCacheStatus.NotSynced. When SaveToCache returns successfully, the value of CacheStatus of the document will be DocumentCacheStatus.Synced and the value of LastCacheSyncTime will contain the timestamp of the operation.

Refer to Document Toolkit and Caching for more information.

Example

For an example, refer to Create.

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Documents Assembly