Ecosyste.ms: Awesome
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: 30 days ago
JSON representation
Shared storage using native shm functions
- Host: GitHub
- URL: https://github.com/boo1ean/shared
- Owner: boo1ean
- License: mit
- Created: 2013-12-08T21:06:31.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-12T13:57:14.000Z (about 9 years ago)
- Last Synced: 2024-07-01T02:36:23.571Z (4 months ago)
- Language: PHP
- Size: 138 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license.txt
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');
```