Locality of reference in hindi:-
program के execution के दौरान, मेमोरी एक्सेस टाइम का most importance है। यह देखा गया है कि बार-बार execution किए जाने वाले डेटा और instructions एक दूसरे के पास स्थित होते हैं। Program के local areas में कई instructions को कुछ period time के दौरान बार-बार execution किया जाता है और Program के अन्य शेष instructions को Comparatively कम ही एक्सेस किया जाता है। Program की इस विशेषता को "locality of reference" कहा जाता है।
Types of locality of reference in hindi:-
1. temporal locality
2. local locality
1. temporal locality of reference:-
temporal locality of reference का मतलब है कि हाल ही में executed instructions को जल्द ही फिर से execution किया जा सकता है। ऐसा इसलिए है क्योंकि जब एक program loop execute किया जाता है तो instructions का एक ही set referenced किया जाता है और बार-बार प्राप्त किया जाता है।
example:- लूप इंडेक्स, सिंगल डेटा एलिमेंट आदि।
2. local locality of reference:-
Spatial locality of reference का मतलब है कि डेटा और instructions जो एक दूसरे के करीब हैं जल्द ही execution होने की संभावना है। ऐसा इसलिए है क्योंकि एक program में, instructions लगातार memory locations में stored होते हैं।
Example :- Sequential Code, Array Processing, Code Within a Loop आदि।
टिप्पणियाँ
एक टिप्पणी भेजें