# 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/xxp3o4q
Go 語言實現敏感詞檢測(前綴樹)**
一、前言\\-\\-\\-\\- 大家都知道遊戲文字、文章等一些風控場景都實現了敏感詞檢測,一些敏感詞會被屏蔽掉或者文章無法發佈。今天我就分享用 Go 實現敏感詞前綴樹來達到文本的敏感詞檢測,讓我們一探究竟!二、敏感詞檢測-------實現敏感詞檢測都很多種方法,例如暴力、正則、前綴樹等。例如一個遊戲的文字交流的場景,敏感詞會被和諧成 ,該如何實現呢?首先我們先準備一些敏感詞如下:sensitiveWords ⌘ Read more