# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/n3fp2iq
Go 底層探索 -五-: 哈希表 Map - 擴容 [下篇]**
介紹-----隨着哈希表中元素的逐漸增加,哈希的性能會逐漸惡化,所以我們需要更多的桶和更大的內存保證哈希的讀寫性能。怎麼觸發-------在每次對哈希表賦值時,都會調用runtime.mapassign 函數,該函數每次都會判斷是否需要擴容,主要有兩個函數:overLoadFactory和tooManyOverflowBuckets:// hash[k]=x表達式,會在編譯期間轉換成runtimeRead more
*