Page 1 of 1

Custom Property Data storage???

Posted: Fri Aug 02, 2013 10:29 pm
by urbaud
Questions about Custom Properties (CP). How much data (text) can be put into a CP? Is there a limit to the amount? Can a CP be used as a storage container for data (text) in the same way we use an external text file to store data? Is it routinely used to store large amounts of data or is storing large amounts of data usually left to an external file? It seems to be a good way to hide and secure data from prying eyes as there is no file for someone to view. Any comments?

urbaud

Re: Custom Property Data storage???

Posted: Fri Aug 02, 2013 10:53 pm
by FourthWorld
For encryption see the encrypt command in the Dictionary.

But re. stack files, yep, they make good general data stores, useful for up to about 50 MBs of data (you can go further, but after 100 MBs you'll see some serious slowdowns when loading and saving).

The only logical limit on the number of custom properties is, if memory serves, UINT4 (> 4 billion). You'll probably run out of RAM long before you run out of available property slots.

Re: Custom Property Data storage???

Posted: Mon Aug 05, 2013 11:06 pm
by urbaud
Hi Richard,
Thanks for your reply, I appreciate the information.