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
- Host: GitHub
- URL: https://github.com/boo1ean/shared
- Owner: boo1ean
- License: mit
- Created: 2013-12-08T21:06:31.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-12T13:57:14.000Z (almost 10 years ago)
- Last Synced: 2025-06-22T11:07:00.327Z (14 days ago)
- Language: PHP
- Size: 138 KB
- Stars: 2
- Watchers: 2
- 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');
```