Arrays versus Property Sets Performance Difference
Hi,
I need to understand which is more preferred Array or Property Set? Which consumes more memory and any quantifiable analysis on the same?
Lets take a scenario where I need to split a string (eg. "ABC,DE,FG,HI) with comma and use the values for some logic, should we go with Array split, or make indexof and go for Property Set creation.Which will consume more memory and execution time.
Subramanian