国产精品婷婷久久久久久,日本中文字幕平台,天天躁夜夜躁av天天爽,国内极度色诱视频网站

外文參考資料與譯文——ssce(數(shù)據(jù)存儲(chǔ))介紹.doc

約26頁(yè)DOC格式手機(jī)打開(kāi)展開(kāi)

外文參考資料與譯文——ssce(數(shù)據(jù)存儲(chǔ))介紹,1. data storage challengesfor either client application or small-scale server applications, you need to address a number of data storage challenges: dat...
編號(hào):19-257327大小:169.50K
分類: 論文>外文翻譯

內(nèi)容介紹

此文檔由會(huì)員 wanli1988go 發(fā)布

1. Data Storage Challenges
For either client application or small-scale server applications, you need to address a number of data storage challenges:
 Data storage location. If you are building a distributed client application and can afford to store your data on a back-end server and retrieve the data over the network, you can just use SQL Server 2005 on the back end. If you are building a mobile device or client application, you will likely need a local data store on the client to cache data when you are offline. You may also need to cache on the client to avoid retrieving large datasets, such as a product catalog, repeatedly over the network. For client applications, the data may only be needed locally, in which case storing on a back-end server does not make sense.
1. 數(shù)據(jù)存儲(chǔ)挑戰(zhàn)
對(duì)于客戶端應(yīng)用程序或小規(guī)模服務(wù)器應(yīng)用程序,您需要解決很多數(shù)據(jù)存儲(chǔ)方面的挑戰(zhàn):
• 數(shù)據(jù)存儲(chǔ)位置。如果您要構(gòu)建分布式客戶端應(yīng)用程序,并且可以承擔(dān)將數(shù)據(jù)存儲(chǔ)于后端服務(wù)器并通過(guò)網(wǎng)絡(luò)檢索數(shù)據(jù)的費(fèi)用,完全可以在服務(wù)器上使用 SQL Server 2005。如果要構(gòu)建移動(dòng)設(shè)備或客戶端應(yīng)用程序,則可能需要在客戶端建立本地?cái)?shù)據(jù)存儲(chǔ),以便在脫機(jī)時(shí)緩存數(shù)據(jù)。同時(shí)您可能還需要在客戶端進(jìn)行緩存,以避免通過(guò)網(wǎng)絡(luò)重復(fù)檢索諸如產(chǎn)品目錄的大型數(shù)據(jù)集。對(duì)于客戶端應(yīng)用程序,可能只需在本地訪問(wèn)數(shù)據(jù),在這種情況下,將數(shù)據(jù)存儲(chǔ)在后端服務(wù)器上是沒(méi)有意義的。
• 數(shù)據(jù)的易訪問(wèn)性。生產(chǎn)效率對(duì)于在預(yù)算內(nèi)將應(yīng)用程序按時(shí)推向市場(chǎng)來(lái)說(shuō)是非常重要的。因此您應(yīng)該選擇那些能夠輕松從存儲(chǔ)位置讀寫(xiě)數(shù)據(jù)的數(shù)據(jù)存儲(chǔ)技術(shù)。
• 易查詢性。功能強(qiáng)大的數(shù)據(jù)存儲(chǔ)技術(shù)能夠使您便捷迅速地搜索和選擇單個(gè)記錄或記錄集合。
• 同步數(shù)據(jù)存儲(chǔ)的能力。對(duì)于移動(dòng)客戶端應(yīng)用程序,存儲(chǔ)在本地的脫機(jī)數(shù)據(jù)必須要與后端數(shù)據(jù)存儲(chǔ)保持同步。重新編寫(xiě)同步機(jī)制不僅容易出錯(cuò),并且很耗時(shí)。因此選擇的數(shù)據(jù)存儲(chǔ)技術(shù)應(yīng)當(dāng)能夠支持對(duì)多個(gè)數(shù)據(jù)存儲(chǔ)的同步。