সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
ফর্ক ক্যাশে ইউটিলিটি টিউনিং
টিউনিং ফর্কের সাথে ব্যবহার করার জন্য ঐচ্ছিক ক্রমাগত ক্যাশে অবজেক্ট।
সারাংশ
Typedefs |
---|
PFnTFCacheGet )(uint64_t key, CProtobufSerialization *value, void *user_data) | typedef একটি ফাংশনের নির্দেশক যা TFCache::ge এর সাথে সংযুক্ত করা যেতে পারে। |
PFnTFCacheRemove )(uint64_t key, void *user_data) | typedef |
PFnTFCacheSet )(uint64_t key, const CProtobufSerialization *value, void *user_data) | typedef একটি ফাংশনের পয়েন্টার যা TFCache::set এর সাথে সংযুক্ত করা যেতে পারে। |
কাঠামো |
---|
TFCache | কোনো সংযোগ উপলব্ধ না থাকলে আপলোড ডেটা ক্যাশে করতে ব্যবহৃত একটি বস্তু। |
Typedefs
PFnTFCacheGet
TFErrorCode(* PFnTFCacheGet)(uint64_t key, CProtobufSerialization *value, void *user_data)
একটি ফাংশনের নির্দেশক যা TFCache::ge এর সাথে সংযুক্ত করা যেতে পারে।
ফাংশন যা একটি কী-এর মান পেতে কল করা হবে। আরও দেখুন: TFCache
PFnTFcache সরান
TFErrorCode(* PFnTFCacheRemove)(uint64_t key, void *user_data)
একটি ফাংশনের নির্দেশক যা TFCache::remove এর সাথে সংযুক্ত করা যেতে পারে।
ফাংশন যা ক্যাশে একটি এন্ট্রি অপসারণ কল করা হবে. আরও দেখুন: TFCache
PFnTFcacheSet
TFErrorCode(* PFnTFCacheSet)(uint64_t key, const CProtobufSerialization *value, void *user_data)
একটি ফাংশনের পয়েন্টার যা TFCache::set এর সাথে সংযুক্ত করা যেতে পারে।
ফাংশন যা একটি কী এর জন্য একটি মান সেট করতে কল করা হবে। আরও দেখুন: TFCache
এই পৃষ্ঠার কন্টেন্ট ও কোডের নমুনাগুলি Content License-এ বর্ণিত লাইসেন্সের অধীনস্থ। Java এবং OpenJDK হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-29 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-29 UTC-তে শেষবার আপডেট করা হয়েছে।"],[],[],null,["# Tuning Fork cache utilities\n===========================\n\nOptional persistent cache object to use with Tuning Fork.\n\nSummary\n-------\n\n| ### Typedefs ||\n|------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [PFnTFCacheGet](#group___t_f_cache_1ga368ffbab21fc87f05f680f399eab3e7c)`)(uint64_t key, CProtobufSerialization *value, void *user_data)` | typedef [TFErrorCode](/games/sdk/reference/performance-tuner/custom-engine/group/tuningfork#group__tuningfork_1gaa2f4878a49a6309e1c0af6ca76f1149f)`(*` Pointer to a function that can be attached to [TFCache::get](/games/sdk/reference/performance-tuner/custom-engine/struct/t-f-cache#struct_t_f_cache_1a8c4095e4fe3f46d7b64f18631147787d). |\n| [PFnTFCacheRemove](#group___t_f_cache_1gaeba6aa5ca1cc9a6542eb4cd2009f4d10)`)(uint64_t key, void *user_data)` | typedef [TFErrorCode](/games/sdk/reference/performance-tuner/custom-engine/group/tuningfork#group__tuningfork_1gaa2f4878a49a6309e1c0af6ca76f1149f)`(*` Pointer to a function that can be attached to [TFCache::remove](/games/sdk/reference/performance-tuner/custom-engine/struct/t-f-cache#struct_t_f_cache_1a5656c0622a5b79635af6e446208cf687). |\n| [PFnTFCacheSet](#group___t_f_cache_1gadc752781c31efad865ea556ea7a265d3)`)(uint64_t key, const CProtobufSerialization *value, void *user_data)` | typedef [TFErrorCode](/games/sdk/reference/performance-tuner/custom-engine/group/tuningfork#group__tuningfork_1gaa2f4878a49a6309e1c0af6ca76f1149f)`(*` Pointer to a function that can be attached to [TFCache::set](/games/sdk/reference/performance-tuner/custom-engine/struct/t-f-cache#struct_t_f_cache_1a3a86f725982d4c549c0cb41c31b569de). |\n\n| ### Structs ||\n|----------------------------------------------------------------------------------|----------------------------------------------------------------------|\n| [TFCache](/games/sdk/reference/performance-tuner/custom-engine/struct/t-f-cache) | An object used to cache upload data when no connection is available. |\n\nTypedefs\n--------\n\n### PFnTFCacheGet\n\n```scdoc\nTFErrorCode(* PFnTFCacheGet)(uint64_t key, CProtobufSerialization *value, void *user_data)\n``` \nPointer to a function that can be attached to [TFCache::get](/games/sdk/reference/performance-tuner/custom-engine/struct/t-f-cache#struct_t_f_cache_1a8c4095e4fe3f46d7b64f18631147787d).\n\nFunction that will be called to get a value for a key. **See also:** [TFCache](/games/sdk/reference/performance-tuner/custom-engine/struct/t-f-cache#struct_t_f_cache) \n\n### PFnTFCacheRemove\n\n```scdoc\nTFErrorCode(* PFnTFCacheRemove)(uint64_t key, void *user_data)\n``` \nPointer to a function that can be attached to [TFCache::remove](/games/sdk/reference/performance-tuner/custom-engine/struct/t-f-cache#struct_t_f_cache_1a5656c0622a5b79635af6e446208cf687).\n\nFunction that will be called to remove an entry in the cache. **See also:** [TFCache](/games/sdk/reference/performance-tuner/custom-engine/struct/t-f-cache#struct_t_f_cache) \n\n### PFnTFCacheSet\n\n```gdscript\nTFErrorCode(* PFnTFCacheSet)(uint64_t key, const CProtobufSerialization *value, void *user_data)\n``` \nPointer to a function that can be attached to [TFCache::set](/games/sdk/reference/performance-tuner/custom-engine/struct/t-f-cache#struct_t_f_cache_1a3a86f725982d4c549c0cb41c31b569de).\n\nFunction that will be called to set a value for a key. **See also:** [TFCache](/games/sdk/reference/performance-tuner/custom-engine/struct/t-f-cache#struct_t_f_cache)"]]