arikawa/bot
ks129 93fbfd98d0 Fix aliases appending
Add 3 dots on appending to merge 2 slices.
2020-05-24 23:08:55 -07:00
..
extras make all error messages lowercase 2020-05-16 23:14:49 +02:00
README.md Bot: Partially implemented middlewares 2020-05-14 13:59:17 -07:00
arguments.go Bot: Added more tests and the Help API 2020-05-14 14:04:18 -07:00
arguments_test.go Bot: Added more tests and the Help API 2020-05-14 14:04:18 -07:00
command.go Implement command aliases 2020-05-24 23:08:55 -07:00
ctx.go make all error messages lowercase 2020-05-16 23:14:49 +02:00
ctx_call.go Implement command aliases 2020-05-24 23:08:55 -07:00
ctx_plumb_test.go Bot: Added Plumb support, fixed tests 2020-05-14 13:59:17 -07:00
ctx_test.go make all error messages lowercase 2020-05-16 23:14:49 +02:00
error.go make all error messages lowercase 2020-05-16 23:14:49 +02:00
error_test.go make all error messages lowercase 2020-05-16 23:14:49 +02:00
subcommand.go Fix aliases appending 2020-05-24 23:08:55 -07:00
subcommand_test.go Bot: Added more tests and the Help API 2020-05-14 14:04:18 -07:00

README.md

What are the performance impacts of this library?

Not a lot for a Discord bot:

THIS IS OUTDATED. TODO: UPDATE.

# Cold functions, or functions that are called once in runtime:
BenchmarkConstructor-8               	  150537	      7617 ns/op
BenchmarkSubcommandConstructor-8     	  155068	      7721 ns/op

# Hot functions, or functions that can be called multiple times:
BenchmarkCall-8                      	 1000000	      1194 ns/op
BenchmarkHelp-8                      	 1751619	       680 ns/op

# Hot functions, but called implicitly on non-message-create events:
BenchmarkReflectChannelID_1Level-8   	10111023	       113 ns/op
BenchmarkReflectChannelID_5Level-8   	 1872080	       686 ns/op