All Projects → viest → Php Foundationdb

viest / Php Foundationdb

PHP FoundationDB Drive

Programming Languages

c
50402 projects - #5 most used programming language

Labels

Projects that are alternatives of or similar to Php Foundationdb

Javascript
a chrome extension,game for javascript
Stars: ✭ 5 (-83.87%)
Mutual labels:  extension
Decreased Productivity
Discreetly surf the web! Control exactly how you want web pages to look like.
Stars: ✭ 22 (-29.03%)
Mutual labels:  extension
Azure Devops Pr Templates
Templates for VSTS pull requests.
Stars: ✭ 12 (-61.29%)
Mutual labels:  extension
Gata
Bookmarks made better
Stars: ✭ 17 (-45.16%)
Mutual labels:  extension
Active interaction Extras
Useful extensions for active_interaction gem
Stars: ✭ 18 (-41.94%)
Mutual labels:  extension
Summernote
Summernote extension for laravel-admin
Stars: ✭ 24 (-22.58%)
Mutual labels:  extension
Weibo Picture Store
🖼 新浪微博图床 Chrome/Firefox 扩展,支持同步到微相册
Stars: ✭ 624 (+1912.9%)
Mutual labels:  extension
Aaextensions
Useful Extensions!
Stars: ✭ 20 (-35.48%)
Mutual labels:  extension
Mdx linkify
Link recognition for Python Markdown
Stars: ✭ 18 (-41.94%)
Mutual labels:  extension
Findergo
🐢 Open terminal quickly from Finder
Stars: ✭ 862 (+2680.65%)
Mutual labels:  extension
Rung Cli
Command line tool for Rung
Stars: ✭ 17 (-45.16%)
Mutual labels:  extension
Blockly Gamepad
A Blockly extension designed to develop games (made with love ❤)
Stars: ✭ 18 (-41.94%)
Mutual labels:  extension
Snipsnap
The ultimate snippets collection for VS Code
Stars: ✭ 840 (+2609.68%)
Mutual labels:  extension
Group by.ext.ee addon
An ExpressionEngine 2.x extension to add 'group by' support to the channel:entries tag pair.
Stars: ✭ 6 (-80.65%)
Mutual labels:  extension
Ext Saladict
🥗 All-in-one professional pop-up dictionary and page translator which supports multiple search modes, page translations, new word notebook and PDF selection searching.
Stars: ✭ 8,418 (+27054.84%)
Mutual labels:  extension
Weakauras2
World of Warcraft addon that provides a powerful framework to display customizable graphics on your screen.
Stars: ✭ 731 (+2258.06%)
Mutual labels:  extension
Mas Vendidos
⬇️ Sorts MercadoLibre items by most selled
Stars: ✭ 23 (-25.81%)
Mutual labels:  extension
Dpack
Visual Studio productivity extension
Stars: ✭ 31 (+0%)
Mutual labels:  extension
Shrinktome
📘Shrink facebook by 5% every 10th second. You're welcome!
Stars: ✭ 15 (-51.61%)
Mutual labels:  extension
Exkeyboard
3rd-party keyboard anywhere.
Stars: ✭ 10 (-67.74%)
Mutual labels:  extension

PHP-FoundationDB

Build Status

FoundationDB is a distributed database designed to handle large volumes of structured data across clusters of commodity servers. It organizes data as an ordered key-value store and employs ACID transactions for all operations. It is especially well-suited for read/write workloads but also has excellent performance for write-intensive workloads.

Open Database

$foundationClient = new \Foundation\Client();

$database = $foundationClient
    ->connection('/usr/local/etc/foundationdb/fdb.cluster')
    ->database('DB');

Insert

Grammar

bool set(string $key, string $value);

Example

$database->set('viest', json_encode([
    'name' => 'JiexinWang',
    'age' => 22
]));

Find

Grammar

string get(string $key);

Example

$user = $database->get('viest');

Delete

Grammar

bool clear(string $key);

Example

$database->clear('viest')

Range

Grammar

array range(int $startIndex, int $endIndex);

Example

$rangeArray = $database->range(0, 2);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].