-
```
#!watchflakes
post
-
## Advanced MongoDB
This episode will cover a few advanced topics like indexing and performance. Also a few Database Admin topics like Replica Set and Sharding
## Overview
The process I am plann…
-
### The purpose and use-cases of the new component
Purpose: Provide a way to perform synthetic browser testing, such as loading web pages, synthesizing clicks, and ensuring browser flows work as ex…
-
https://geektutu.com/post/high-performance-go.html
Go 语言/golang 高性能编程,Go 语言进阶教程,Go 语言高性能编程(high performance go)。详细介绍如何测试/评估 Go 代码的性能,内容包括使用 testing 库进行基准测试(benchmark),性能分析(profiling) 编译优化(compiler …
-
Ref - https://github.com/elastic/libbeat/pull/278
-
While editing some non-testing code I found this little gem:
```go
return fmt.Errorf("")
```
At first I thought that this is just a weird quirk, but I've decided to `grep` through my `${GOPATH…
-
```
#!watchflakes
post
-
We need tests for each API endpoint. Thoughts on frameworks on this?
-
Right now the x/playground repo is tested via the usual `go test ./...` as other x/ repos.
As described in #24823, there are tests that need additional dependencies to run (Docker).
This is the …
-
I've got a callback function which, in one of my key queries, is called thousands of times. Initially I did the "easy" thing of making a Golang-based callback, using `conn.RegisterFunc()`. Profiling…