1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-09-28 05:08:59 +00:00
arikawa/bot
samhza 37b8871c65
api: Update sending/editing messages for v9 (#230)
api.{Send,Edit}MessageData and their equivalents in package api/webhook
have been updated to add some fields added in Discord API v9.
(webhook.Client).EditMessage now also returns a message, because that
endpoint returns a message on success.
2021-06-17 23:32:11 -07:00
..
extras shard: Remake shard manager (#226) 2021-06-14 15:22:55 -07:00
arguments.go Bot: Fixed CustomParser arguments still having subcommand 2020-11-14 21:05:31 -08:00
arguments_test.go Bot: Added more tests and the Help API 2020-05-14 14:04:18 -07:00
command.go *: Migrated Go Modules to v3 2021-06-01 19:59:01 -07:00
ctx.go shard: Remake shard manager (#226) 2021-06-14 15:22:55 -07:00
ctx_call.go api: Update sending/editing messages for v9 (#230) 2021-06-17 23:32:11 -07:00
ctx_plumb_test.go *: Migrated Go Modules to v3 2021-06-01 19:59:01 -07:00
ctx_shard_test.go shard: Remake shard manager (#226) 2021-06-14 15:22:55 -07:00
ctx_test.go shard: Remake shard manager (#226) 2021-06-14 15:22:55 -07:00
error.go *: Rename error types to have Error suffix (#215) 2021-06-06 12:40:24 -07:00
error_test.go *: Rename error types to have Error suffix (#215) 2021-06-06 12:40:24 -07:00
README.md
subcommand.go bot: remove deprecated Subcommand.SanitizeMessage 2021-06-06 13:12:02 -07:00
subcommand_test.go Bot: Added more tests and the Help API 2020-05-14 14:04:18 -07:00

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