Skip to content

Commit

Permalink
_
Browse files Browse the repository at this point in the history
  • Loading branch information
codekeyz committed Jan 14, 2025
1 parent fb8407f commit 01eada5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/infrastructure/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ Runners are created on demand in the closest [region](/infrastructure/regions) t
- **Architecture**: Your Dart code is compiled for the x86_64 architecture.
- **FFI (Foreign Function Interface)**: If your application depends on FFI, ensure that the associated code or libraries are also compiled for the x86_64 architecture. Note that some syscalls may not be permitted in the runtime environment. If a particular syscall is critical to your application’s functionality, please submit an issue.

Globe's on-demand dart runner environment means you should:
### Benefits

- Have a theoretically unlimited amount of scale.
- Fully Managed Networking Infrastructure.
- **Unlimited Scale**: Theoretically scale to handle any amount of traffic.
- **Fully Managed Backend Infrastructure**: No need to configure or manage servers, networking, or scaling—everything is handled automatically.

However, there are some limitations to achieve this:
### Limitations

- The application cannot rely on having a persistent file system.
- It cannot rely on having persistent memory.
- **No Persistent Volume**: Do not rely on a persistent file system.
- **No Persistent Memory**: Treat each request as though it operates in a fresh environment.

Even if a user is performing multiple requests from the same region, it is not guaranteed that the same runner will be used to handle the request. Treat each request as though it is a new environment.
Even if a user performs multiple requests from the same region, the same runner is not guaranteed to handle subsequent requests.

## Starting a server

Expand Down

0 comments on commit 01eada5

Please sign in to comment.