sahithvibudhi/php-lazal

A PHP Lazal Client

dev-master 2018-07-17 08:03 UTC

This package is not auto-updated.

Last update: 2024-10-03 11:49:26 UTC


README

This is official Lazal PHP client.

Instation:

composer require sahithvibudhi/php-lazal

How to Use:

Making a connection to Lazal Server

$client = new Lazal\Client(['host'=>'127.0.0.1', 'port' => 5555]);

Writing data

$client->set('key1', 'value');

Fetching data

$value = $client->get('key1');

Deleting data

$client->delete('key1');