Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/boo1ean/shared

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

Last synced: 30 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');
```