Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 476 Bytes

File metadata and controls

24 lines (16 loc) · 476 Bytes

OneBlink API CLI

Memory Constraints

By default Memory for your api is limited to 1024 MB (1 GB).

Increasing Memory Size

We allow for increasing the Memory Size of your api through the server.memorySize property in the .blinkmrc.json file. Only multiples of 64 are allowed;

  • Minimum: 128
  • Maximum: 10240

.blinkmrc.json

The following configuration will allow 2GB for your api functions:

{
  "server": {
    "memorySize": 2048
  }
}