1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-11-01 04:24:19 +00:00
arikawa/utils/bot
diamondburned 2c2daec84b
*: Increase test timeout throughout
This should make integration tests pass in CI.
2023-11-04 02:21:49 -07:00
..
_example/advanced_bot go fmt + gci 2023-09-19 11:37:24 -07:00
extras bot: Fix failing ./extras/middlewares test 2023-11-03 19:35:40 -07:00
arguments.go
arguments_test.go
command.go
ctx.go go fmt + gci 2023-09-19 11:37:24 -07:00
ctx_call.go go fmt + gci 2023-09-19 11:37:24 -07:00
ctx_plumb_test.go
ctx_test.go
error.go
error_test.go
README.md
subcommand.go go fmt + gci 2023-09-19 11:37:24 -07:00
subcommand_test.go

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