Download the PHP package keinos/kvsqlite3 without Composer
On this page you can find all versions of the php package keinos/kvsqlite3. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download keinos/kvsqlite3
More information about keinos/kvsqlite3
Files in keinos/kvsqlite3
Download keinos/kvsqlite3
More information about keinos/kvsqlite3
Files in keinos/kvsqlite3
Vendor keinos
Package kvsqlite3
Short Description Simple Key Value Store in SQLite3 (PSR-16)
License Apache-2.0
Homepage https://github.com/KEINOS/KVSQLite3
Package kvsqlite3
Short Description Simple Key Value Store in SQLite3 (PSR-16)
License Apache-2.0
Homepage https://github.com/KEINOS/KVSQLite3
Please rate this library. Is it a good library?
Informations about the package kvsqlite3
KVSQLite3 - Simple Key Value Store in SQLite3
Nothing Relational to Relational Databases.
Methods
- Basic
set($key, $value, [$ttl])
: Stores the value with the given key. If the key already exists then the value will be overwritten. If the$ttl
is set, then the data will be expired after the given seconds.get($key)
: Returns the stored value of the given key.delete($key)
: Deletes the stored value of the given key.dump($name_file)
: Dumps the stored data in SQL query.
- Advanced
clear()
: Deletes all the data stored.has($key)
: Determines whether an item is present in the storage.setMultiple($data)
: Stores multiple values at once.getMultiple($keys)
: Returns the stored values of the given keys.deleteMultiple($keys)
: Deletes the stored values of the given keys.
Note
We DO NOT recommend to store objects.
All versions of kvsqlite3 with dependencies
PHP Build Version
Package Version
Requires
php Version
^8.0 || ^7.1
ext-mbstring Version *
ext-sqlite3 Version *
ext-hash Version *
ext-json Version *
ext-mbstring Version *
ext-sqlite3 Version *
ext-hash Version *
ext-json Version *
The package keinos/kvsqlite3 contains the following files
Loading the files please wait ....