| Crates.io | structurray |
| lib.rs | structurray |
| version | 0.1.0 |
| created_at | 2024-07-06 15:33:26.277615+00 |
| updated_at | 2024-07-06 15:33:26.277615+00 |
| description | Easy psuedo-array generation for database optimization |
| homepage | |
| repository | https://github.com/script-mouse/structurray |
| max_upload_size | |
| id | 1294151 |
| size | 10,564 |
A Rust Library designed to help create structs that store many values of the same type.
These structures, or psuedo-arrays, are useful for increasing storage efficiency in Google Firebase (realtime database)
or other environments that store data as a string-like object but do not support arrays. This is because Structurray uses a Base62
algorithm, as outlined in the documentation of
ascii_basing, to reduce
the length of identifiers compared to the base-10 naming algorithm usually used by default.
For more information about this library, check its documentation.