All the Muta envs are available in this project since this project is dependent on muta-sdk, for example, MUTA_ENDPOINT
The modules which is named app-*
will start a server when running, so they need a port for listening.
- type: number
- default
- server: 4040
- sync: 0 (random)
The database connection URI
- type: string
- default: (empty)
The concurrency when sync block data from a Muta instance
- type: number
- default: 50
To prevent concurrent writes from causing the transaction to be out of order, a lock is necessary. The lock may warn you when the program exits unexpectedly, or when running multiple sync
-type: 0 | 1 default: 1
The max size of a queue which will pre-fetch unsynced block
- type: number
- default: 4
Default list size when query a list without first
or last
- type: string
- default: 10
A large query would be banned when complexity over this value. Each field corresponds to one unit of complexity, that means the complexity of a list is n(rows) * m(columns)
- type: number
- default: 500
Protect against excessive page-turning, which can lead to performance issues
- type: number
- default: 10000
The Redis connection URI
- type: string
- default: (empty)