This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# MYSQL === | |
docker run --rm -d \ | |
--name mysql_1 \ | |
-p 3306:3306 \ | |
-e MYSQL_ROOT_PASSWORD=change-me \ | |
-e MYSQL_DATABASE=test_db \ | |
mysql:8 | |
# attach | |
docker exec -it mysql_1 bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"log" | |
"github.com/tarantool/go-tarantool" | |
) | |
type usersRow struct { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env tarantool | |
local log = require('log') | |
local function init_space() | |
local users_space = box.schema.space.create('users') | |
users_space:format({ | |
{name = 'id', type = 'unsigned', is_nullable = false}, | |
{name = 'name', type = 'string'}, |