sahithvibudhi/php-lazal

A PHP Lazal Client

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/sahithvibudhi/php-lazal

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

This package is not auto-updated.

Last update: 2025-12-25 17:19:38 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');