Misskeyのデフォルト (めいすきーは異なる) では、master, workerの2プロセスが上がる。 masterは最初に上がるやつで、主になにもしない。 workerはmasterからforkされるプロセスで、master以外のほぼ全ての仕事を行う。
workerの数はconfigのclusterLimit
で調整できる (デフォルトは1)。
CREATE OR REPLACE FUNCTION base36_decode(IN base36 varchar) | |
RETURNS bigint AS $$ | |
DECLARE | |
a char[]; | |
ret bigint; | |
i int; | |
val int; | |
chars varchar; | |
BEGIN | |
chars := '0123456789abcdefghijklmnopqrstuvwxyz'; |
BALANCE_RAILPLUS = new byte[] { -112, 76, 0, 0, 4 }; | |
BALANCE_CASHBEE = new byte[] { -112, 76, 0, 0, 4 }; | |
BALANCE_HIPASS = new byte[] { -112, 92, 0, 0, 4 }; | |
BALANCE_MASTER = new byte[] { -112, 76, 0, 0, 4 }; | |
BALANCE_TMONEY = new byte[] { -112, 76, 0, 0, 4 }; | |
BALANCE_HANPAY = new byte[] { -112, 76, 0, 0, 4 }; | |
CARDINFO_CASHBEE = new byte[] { 0, -78, 1, 20, 51 }; | |
CARDINFO_HIPASS = new byte[] { 0, -80, -120, 0, 12 }; | |
CARDINFO_MASTER = new byte[] { 0, -78, 1, 12, 0 }; | |
CARDINFO_TMONEY = new byte[] { 0, -78, 1, 20, 51 }; |
So you've cloned somebody's repo from github, but now you want to fork it and contribute back. Never fear! | |
Technically, when you fork "origin" should be your fork and "upstream" should be the project you forked; however, if you're willing to break this convention then it's easy. | |
* Off the top of my head * | |
1. Fork their repo on Github | |
2. In your local, add a new remote to your fork; then fetch it, and push your changes up to it | |
git remote add my-fork [email protected] |