arikawa/bot
diamondburned (Forefront) e556d2afad Bot: Partially implemented middlewares 2020-05-14 13:59:17 -07:00
..
extras Bot: Partially implemented middlewares 2020-05-14 13:59:17 -07:00
README.md Bot: Partially implemented middlewares 2020-05-14 13:59:17 -07:00
arguments.go Bot: Added ArgsParser for each Context instead of global 2020-05-05 23:23:52 -07:00
arguments_test.go Bot: Added trailing manual parser support 2020-05-03 18:33:24 -07:00
command.go Bot: Added Plumb support, fixed tests 2020-05-14 13:59:17 -07:00
ctx.go Bot: Partially implemented middlewares 2020-05-14 13:59:17 -07:00
ctx_call.go Bot: Added Plumb support, fixed tests 2020-05-14 13:59:17 -07:00
ctx_plumb_test.go Bot: Added Plumb support, fixed tests 2020-05-14 13:59:17 -07:00
ctx_test.go Bot: Partially implemented middlewares 2020-05-14 13:59:17 -07:00
error.go Bot: Partially implemented middlewares 2020-05-14 13:59:17 -07:00
subcommand.go Bot: Added Plumb support, fixed tests 2020-05-14 13:59:17 -07:00
subcommand_test.go Bot: Partially implemented middlewares 2020-05-14 13:59:17 -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