2019-09-13 17:13:55 +02:00
|
|
|
---
|
|
|
|
title: nearestDc
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Nearest data centre, according to geo-ip.
|
2019-09-13 17:13:55 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: nearestDc
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Nearest data centre, according to geo-ip.
|
2019-09-13 17:13:55 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|country|[string](../types/string.md) | Yes|Country code determined by geo-ip|
|
|
|
|
|this\_dc|[int](../types/int.md) | Yes|Number of current data centre|
|
|
|
|
|nearest\_dc|[int](../types/int.md) | Yes|Number of nearest data centre|
|
2019-09-13 17:13:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [NearestDc](../types/NearestDc.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$nearestDc = ['_' => 'nearestDc', 'country' => 'string', 'this_dc' => int, 'nearest_dc' => int];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
nearestDc={_='nearestDc', country='string', this_dc=int, nearest_dc=int}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|