An open API service indexing awesome lists of open source software.

https://github.com/boo1ean/shared

Shared storage using native shm functions
https://github.com/boo1ean/shared

Last synced: 14 days ago
JSON representation

Shared storage using native shm functions

Awesome Lists containing this project

README

        

## Shared storage

Simple shared storage implementation using single shared memory segment.
For storing small data payloads.

#### Setting and getting data

```php
set('name', 'Jango');

// Will be available in next script executions
$s->get('name');
```