MemoryStoreHashMap

แสดงที่เลิกใช้งานแล้ว

*เนื้อหานี้แปลโดยใช้ AI (เวอร์ชัน Beta) และอาจมีข้อผิดพลาด หากต้องการดูหน้านี้เป็นภาษาอังกฤษ ให้คลิกที่นี่

ไม่สามารถสร้าง
ไม่ซ้ำ

ให้การเข้าถึงแผนที่แฮชภายใน MemoryStoreService แผนที่แฮชเป็นคอลเลกชันของรายการที่มีสตริงกุญแจสามารถเชื่อมโยงกับค่าของตัวอักษรใด ๆ (ขนาดสูงสุดที่อนุญาต - ดู หน่วยเก็

สรุป

วิธีการ

  • GetAsync(key : string):Variant
    ผลตอบแทน

    ดึงค่าของกุญแจในแผนที่แฮช

  • ผลตอบแทน

    กลับมาเป็นวัตถุ MemoryStoreHashMapPages เพื่อจัดเรียงผ่านรายการในแผนที่แฮช

  • RemoveAsync(key : string):void
    ผลตอบแทน

    ลบรายการออกจากแผนที่แฮช

  • SetAsync(key : string,value : Variant,expiration : number):bool
    ผลตอบแทน

    ตั้งค่ามูลค่าของกุญแจในแผนที่แฮช

  • UpdateAsync(key : string,transformFunction : function,expiration : number):Variant
    ผลตอบแทน

    ดึงค่าของกุญแจจากแผนที่แฮชและสามารถปรับปรุงค่าเป็นค่าใหม่ได้

คุณสมบัติ

วิธีการ

GetAsync

Variant
ผลตอบแทน

ดึงค่าของกุญแจในแผนที่แฮช

พารามิเตอร์

key: string

ดึงข้อมูล


ส่งค่ากลับ

Variant

มีค่า หรือไม่มีหากคีย์ไม่มีอยู่

ตัวอย่างโค้ด

Getting data from a MemoryStore Hash Map

local MemoryStoreService = game:GetService("MemoryStoreService")
local hashMap = MemoryStoreService:GetHashMap("HashMap1")
local key = "User_1234"
local value = 1000
local expiration = 30
local setSuccess, _ = pcall(function()
return hashMap:SetAsync(key, value, expiration)
end)
if setSuccess then
print("Set succeeded!")
end
local item
local getSuccess, getError = pcall(function()
item = hashMap:GetAsync(key)
end)
if getSuccess then
print(item)
else
warn(getError)
end
ผลตอบแทน

กลับมาเป็นวัตถุ MemoryStoreHashMapPages เพื่อจัดเรียงผ่านรายการในแผนที่แฮช ขอบเขตที่ถูกต้องคือ 1 ถึง 200 รวมทั้งหมด

พารามิเตอร์

count: number

จํานวนเงินสูงสุดที่สามารถกลับมาเป็นไอเท็มได้


ส่งค่ากลับ

ตัวอย่าง MemoryStoreHashMapPages ที่รวบรวมรายการเป็น MemoryStoreHashMapPages รายการ

ตัวอย่างโค้ด

Listing items in a MemoryStore Hash Map

local MemoryStoreService = game:GetService("MemoryStoreService")
local testHashMap = MemoryStoreService:GetHashMap("HashMap1")
local EXPIRATION = 600
local NUM_TEST_ITEMS = 32
local function populateHashMap(hashMap: MemoryStoreHashMap, numItems: number): { [string]: any }
print("Setting HashMap data...")
local createdItems = {}
for index = 1, numItems do
local key = tostring(index) -- HashMap keys must be strings
local value = `{key}_test_value`
local success, result = pcall(hashMap.SetAsync, hashMap, key, value, EXPIRATION)
if success then
createdItems[key] = value
else
warn(`Error setting key {key}: {result}`)
end
end
print("Done setting HashMap data.")
return createdItems
end
local function getItemsFromAllPages(pages: MemoryStoreHashMapPages): { [string]: any }
-- Purely for logging purposes, we track what page number we're on
local currentPageNumber = 1
local retrievedItems = {}
while not pages.IsFinished do
print(`Getting items on page {currentPageNumber}...`)
local items = pages:GetCurrentPage()
for _, entry in pairs(items) do
print(`\t{entry.key}: {entry.value}`)
retrievedItems[entry.key] = entry.value
end
-- Advance pages if there are more pages to read
if not pages.IsFinished then
pages:AdvanceToNextPageAsync()
currentPageNumber += 1
end
end
print("Finished reading all pages")
return retrievedItems
end
local function compareAllItems(retrievedItems: { [string]: any }, expectedItems: { [string]: any }): number
print("Comparing retrieved items to expected items...")
local numMatchingItems = 0
for key, expectedValue in pairs(expectedItems) do
if retrievedItems[key] == expectedValue then
numMatchingItems += 1
else
warn(`Mismatched retrieved value for key {key}: expected {expectedValue}, retrieved {retrievedItems[key]}`)
end
end
print("Comparison complete!")
return numMatchingItems
end
-- Keys added to the hashmap are also added to this expectedItems table.
-- Later, the retrieved hashmap items will be compared against this table of expected items.
local expectedItems = populateHashMap(testHashMap, NUM_TEST_ITEMS)
-- Getting pages can error. In this case, we will let it error and stop program execution,
-- but you may want to pcall it and handle it differently.
print(`Getting HashMap pages with ListItemsAsync...`)
local pages = testHashMap:ListItemsAsync(NUM_TEST_ITEMS)
local retrievedItems = getItemsFromAllPages(pages)
local numMatchingItems = compareAllItems(retrievedItems, expectedItems)
-- If there were no errors setting or getting items, all items should match.
print(`Program complete. {numMatchingItems}/{NUM_TEST_ITEMS} retrieved items matched the expected values.`)

RemoveAsync

void
ผลตอบแทน

ลบรายการออกจากแผนที่แฮช

พารามิเตอร์

key: string

กุญแจที่จะลบ


ส่งค่ากลับ

void

ตัวอย่างโค้ด

Removing data from a MemoryStore Hash Map

local MemoryStoreService = game:GetService("MemoryStoreService")
local hashMap = MemoryStoreService:GetHashMap("HashMap1")
local key = "User_1234"
local value = 1000
local expiration = 30
local setSuccess, setError = pcall(function()
return hashMap:SetAsync(key, value, expiration)
end)
if not setSuccess then
warn(setError)
end
local removeSuccess, removeError = pcall(function()
hashMap:RemoveAsync(key)
end)
if removeSuccess then
print("Remove succeeded!")
else
warn(removeError)
end

SetAsync

ผลตอบแทน

ตั้งค่ามูลค่าของกุญแจในแผนที่แฮช, เขียนเคลื่อนที่ค่าใด ๆ ที่มีอยู่

พารามิเตอร์

key: string

ตั้งค่า

value: Variant

ตั้งค่า

expiration: number

ระยะเวลาการใช้งานของไอเท็มจะหมดในวินาที หลังจากนั้นไอเท็มจะถูกลบออกจากแผนที่แฮชอัตโนมัติ เวลาการใช้งานสูงสุดคือ 45 วัน (3,888,000 วินาที)


ส่งค่ากลับ

ตัวอย่างโค้ด

Adding data to a MemoryStore Hash Map

local MemoryStoreService = game:GetService("MemoryStoreService")
local hashMap = MemoryStoreService:GetHashMap("HashMap1")
local key = "User_1234"
local value = 1000
local expiration = 30
local setSuccess, setError = pcall(function()
return hashMap:SetAsync(key, value, expiration)
end)
if setSuccess then
print("Set succeeded!")
else
warn(setError)
end

UpdateAsync

Variant
ผลตอบแทน

ดึงค่าของกุญแจจากแผนที่แฮชและสามารถปรับปรุงค่าเป็นค่าใหม่ได้

วิธีนี้รองรับคุณสมบัติที่เรียกว่า ที่ดึงค่ากุญแจที่มีอยู่และส่งให้เป็นคุณสมบัติของการเปลี่ยนแปลงซึ่งส่งค่าใหม่สำหรับรายการด้วยข้อยกเว้นเหล่านี้:

  • หากไม่มีกุญแจ ค่าเก่าที่ส่งไปยังฟังก์ชันจะเป็น zero
  • หากฟังก์ชันกลับมาเป็น zero การปรับปรุงจะถูกยกเลิก

ค่าใหม่จะถูกบันทึกเฉพาะเมื่อกุญแจไม่ได้รับการปรับปรุง (เช่นโดยเซิร์ฟเวอร์เกมที่แตกต่างกัน) ตั้งแต่ตอนที่มันถูกอ่าน หากค่าเปลี่ยนแปลงในเวลานั้น ฟังก์ชันต่อแปรเรีย

พารามิเตอร์

key: string

อัปเดต

transformFunction: function

คุณสมบัติเปลี่ยนแปลงซึ่งคุณให้ คุณสมบัตินี้รับค่าเก่าเป็นการป้อนข้อมูลและส่งค่าใหม่

expiration: number

ระยะเวลาการใช้งานของไอเท็มจะหมดในวินาที หลังจากนั้นไอเท็มจะถูกลบออกจากแผนที่แฮชอัตโนมัติ เวลาการใช้งานสูงสุดคือ 45 วัน (3,888,000 วินาที)


ส่งค่ากลับ

Variant

ค่าสุดท้ายที่รุกคืนโดยหน้าฟังค์ชัน

ตัวอย่างโค้ด

Updating a Memory Store Hash Map

local MemoryStoreService = game:GetService("MemoryStoreService")
local hashMap = MemoryStoreService:GetHashMap("ResourceInventory")
local function contributeResources(itemResource, addedCount)
local success, newResourceCount = pcall(function()
return hashMap:UpdateAsync(itemResource, function(resource)
resource = resource or {count = 0}
resource.count = resource.count + addedCount
-- ensure we don't exceed the maximum resource count
if resource.count > 500 then
resource.count = 500
end
return resource
end, 1200)
end)
if success then
print(newResourceCount)
end
end
contributeResources("myResource", 50)

อีเวนต์