fix(#30): one concurrent thread by default

This commit is contained in:
Tomas Aparicio 2015-04-15 02:25:57 +02:00
parent 6dbab52dbd
commit e111d875e7
3 changed files with 32 additions and 9 deletions

View file

@ -60,7 +60,7 @@ Here you can see some performance test comparisons for multiple scenarios:
#### Benchmarks
Tested using Go 1.4 and libvips-7.42.3 in OSX i7 2.7Ghz
Tested using Go 1.4.2 and libvips-7.42.3 in OSX i7 2.7Ghz
```
BenchmarkResizeLargeJpeg 50 43400480 ns/op
BenchmarkResizePng 20 57592174 ns/op
@ -237,6 +237,11 @@ Run the process passing the `DEBUG` environment variable
DEBUG=* ./app
```
Enable libvips traces (note that a lot of data will be written in stdout):
```
VIPS_TRACE=1 ./app
```
#### func DetermineImageTypeName
```go