# 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/manmcqa
遇到個 MySQL 索引長度限制的問題**
前言我只是創建個索引而已,沒想到還這些遇到個詭異的問題!😱😱話說你平時創建 mysql 時遇到過以下創建索引報錯的情況嗎?報錯提示如下Specified key was too long; max key length is 767 bytes//需要添加索引的字段的長度太長,超過了767字節 🚩什麼?索引長度限制?我從沒遇到過啊,MySQL 還會對索引鍵的長度有限制?是的,一般都不會遇到,不過 ⌘ Read more