Difference between revisions of "TIniFile.CacheUpdates"

From Soldat Community Wiki
Jump to: navigation, search
 
Line 3: Line 3:
  
 
==Description==
 
==Description==
[[TIniFile.CacheUpdates|CacheUpdates]] determines how to deal with changes to the ini-file data: if set to True then changes are kept in memory till the file is written to disk with a call to [[TIniFile.UpdateFile|UpdateFile]], This is the default behaviour. If it is set to False then each call that changes the data of the ini-file will result in a call to [[TIniFile.UpdateFile|UpdateFile]], it may adversely affect performance.
+
[[TIniFile.CacheUpdates|CacheUpdates]] determines how to deal with changes to the ini-file data: if set to True then changes are kept in memory till the file is written to disk with a call to [[TIniFile.UpdateFile|UpdateFile]] or [[Destructor|Free]], This is the default behaviour. If it is set to False then each call that changes the data of the ini-file will result in a call to [[TIniFile.UpdateFile|UpdateFile]], it may adversely affect performance.
  
 
[[Category:TIniFile]]
 
[[Category:TIniFile]]

Latest revision as of 22:27, 16 June 2018

property CacheUpdates: Boolean
 Access mode: RW

Description

CacheUpdates determines how to deal with changes to the ini-file data: if set to True then changes are kept in memory till the file is written to disk with a call to UpdateFile or Free, This is the default behaviour. If it is set to False then each call that changes the data of the ini-file will result in a call to UpdateFile, it may adversely affect performance.