0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Deno: Redis のデータを作成 (Create)

Last updated at Posted at 2020-05-18

プログラム

redis_create.ts
// ---------------------------------------------------------------
//	redis_create.ts
//
//					Feb/27/2023
//
// ---------------------------------------------------------------
import { connect } from "https://deno.land/x/redis/mod.ts"
// ---------------------------------------------------------------
function dict_append_proc (dict_aa: {[key: string]: any},id_in:string,name_in:string,population_in:number,date_mod_in:string)
{
	var unit_aa:{[key: string]: any} = new Object()
	unit_aa['name'] = name_in
	unit_aa['population'] = population_in
	unit_aa['date_mod'] = date_mod_in

	dict_aa[id_in] = unit_aa

	return	dict_aa
}

// ---------------------------------------------------------------
function data_prepare_proc ()
{
	var dict_aa : {[key: string]: any} = new Object()

	dict_aa = dict_append_proc (dict_aa,'t1851','福井',32814,'2014-5-12')
	dict_aa = dict_append_proc (dict_aa,'t1852','敦賀',68257,'2014-4-15')
	dict_aa = dict_append_proc (dict_aa,'t1853','小浜',26841,'2014-12-2')
	dict_aa = dict_append_proc (dict_aa,'t1854','大野',31864,'2014-3-22')
	dict_aa = dict_append_proc (dict_aa,'t1855','勝山',46358,'2014-2-14')
	dict_aa = dict_append_proc (dict_aa,'t1856','鯖江',63792,'2014-7-12')
	dict_aa = dict_append_proc (dict_aa,'t1857','あわら',38251,'2014-3-21')
	dict_aa = dict_append_proc (dict_aa,'t1858','越前',52486,'2014-7-26')
	dict_aa = dict_append_proc (dict_aa,'t1859','坂井',16859,'2014-11-8')
	
	return	dict_aa
}
// ---------------------------------------------------------------
console.log ("*** 開始 ***")
//
const dict_aa = data_prepare_proc ()

const client = await connect({ hostname: "127.0.0.1", port: 6379 })


for (var key in dict_aa)
	{
	var str_json = JSON.stringify (dict_aa[key])

	const ok = await client.set(key, str_json)
	}

console.log ("*** 終了 ***")

// ---------------------------------------------------------------

実行コマンド

deno run --allow-net redis_create.ts

確認したバージョン

$ deno --version
deno 1.31.0 (release, x86_64-unknown-linux-gnu)
v8 11.0.226.13
typescript 4.9.4
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?