i noticed that accessing
float test;
is at least 2 time faster than accessing an element of
float test[260000]
however i need to have a storage place in memory working like an array but which could be accessed as fast as a simple float.
Do you know a method which could solve this performance issue ?



