From 0a5dd509e27f32268a6f7809795aa223226ca908 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=93=D1=80=D0=B8=D0=B3=D0=BE=D1=80=D0=B8=D0=B9=20=D0=A1?= =?UTF-8?q?=D0=B0=D1=84=D1=80=D0=BE=D0=BD=D0=BE=D0=B2?= Date: Wed, 2 Apr 2025 18:33:14 +0000 Subject: [PATCH] Update README.md --- README.md | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 6c42e96..34f1fee 100644 --- a/README.md +++ b/README.md @@ -28,10 +28,13 @@ Содержание
  1. - О модуле + О модуле Загрузка файла в Futriix
  2. Использование
  3. Начало
  4. +
  5. Загрузка файла в Futriix
  6. +
  7. Больше примеров
  8. +
  9. 4
@@ -62,34 +65,32 @@ futriix:~> dbx select name,tel from phonebook where gender = "F" order by pos de ## Начало -### Get the package and build the binary: +### Скачиваем пакет и собираем бинаный файл: ```sql -$ git clone https://github.com/cscan/dbx.git -$ cd dbx/src && make +$ git clone https://source.futriix.ru/fbx/fbx.git +$ cd fbx/src && make ``` -This plugin library is written in pure C. A file dbx.so is built after successfully compiled. +После успешной компиляции в директории пояаится файл "fbx.so" -### Load the module in Valkeys (3 ways) +### Загрузка файла в Futriix (3 способа) -1. Load the module in CLI +1. Загрузка модуля через клиента (команднуб строку) ```sql futriix:~> module load /path/to/dbx.so ``` -2. Start the server with loadmodule argument +2. Запуск сервера с параметром "loadmodule" ```sql -$ Valkeys-server --loadmodule /path/to/dbx.so +$ Valkeys-server --loadmodule /path/to/fbx.so ``` -3. Adding the following line in the file Valkeys.conf and then restart the server +3.Добавление следующей строки в файл конфигурации Futriix "futriix.conf" с последующей перезагрузкой сервера, для применения вновь внесённых изменений через файл конфигурации. ```sql -loadmodule /path/to/dbx.so +loadmodule /path/to/fbx.so ``` -If you still have problem in loading the module, please visit: https://Valkeys.io/topics/modules-intro - -## More Examples +## Больше примеров ### Select statement You may specify multiple fields separated by comma