OutSystems Forge 日本語データベース

Application Cache

※Forge全件データの日本語検索サービスをご利用になりたい場合は、こちらまでお問合せください。

Forge英文サイト

2017-11-28 1.0.1 Danny Prager All .NET Components, Libraries, Applications, Developer Tools
キャッシングを使用すると、データをメモリに保存して迅速にアクセスできます。 アプリケーションはキャッシュにアクセスでき、データにアクセスするたびに元のソースからデータを取得する必要はありません。 これにより、データに対する繰り返しのクエリが回避され、パフォーマンスとスケーラビリティが向上します。 さらに、キャッシングによって、データソースが一時的に利用できなくなったときにデータを利用できるようになります。
キャッシングを使用すると、データをメモリに保存して迅速にアクセスできます。 アプリケーションはキャッシュにアクセスでき、データにアクセスするたびに元のソースからデータを取得する必要はありません。 これにより、データに対する繰り返しのクエリが回避され、パフォーマンスとスケーラビリティが向上します。 さらに、キャッシングによって、データソースが一時的に利用できなくなったときにデータを利用できるようになります。 Yopuはそれを使ってサーバのRAMメモリにデータを保存することができます。 これにより、データ・ストアにビジネス価値がない場合に、データベースに対するunnescecary querysの実行を防ぐことができます。 たとえば、私はそれをメモリ内のdatetimeを設定するWatchdagアプリケーションに使用しています。 datetimeが1時間以上前になると、何か間違っているというメッセージを送るためにロジックが実行されます。

[Overview]
Caching enables you to store data in memory for rapid access. Applications can access the cache and not have to retrieve the data from the original source whenever the data is accessed. This avoids repeated queries for data, and it can improve performance and scalability. In addition, caching makes data available when the data source is temporarily unavailable.
[Detail]
Caching enables you to store data in memory for rapid access. Applications can access the cache and not have to retrieve the data from the original source whenever the data is accessed. This avoids repeated queries for data, and it can improve performance and scalability. In addition, caching makes data available when the data source is temporarily unavailable. Yopu can use it to store data in the RAM Memory of the server. This enables you to prevent doing unnescecary querys to your database when the data stores has no businessvalue. For instance I'm using it for a Watchdag application that sets a datetime in memory. When the datetime is more then an hour ago logic is run to send messages that something is wrong.
戻る