We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7cb977 commit 6bd3d62Copy full SHA for 6bd3d62
README.md
@@ -42,13 +42,26 @@ end
42
43
## Configuration
44
45
+### Runtime Configuration
46
+
47
```elixir
48
config :exqlite, default_chunk_size: 100
49
```
50
51
* `default_chunk_size` - The chunk size that is used when multi-stepping when
52
not specifying the chunk size explicitly.
53
54
+### Compile-time Configuration
55
56
+In `config/config.exs`,
57
58
+```elixir
59
+config :exqlite, make_force_build: false
60
+```
61
62
+* `make_force_build` - Set `true` to opt out of using precompiled artefacts.
63
+This option only affects the default configuration. For advanced configuation,
64
+this library will always compile natively.
65
66
## Advanced Configuration
67
0 commit comments