こんにちは!JQです!
前回は『Amazon DynamoDB編~jsonドキュメント01~』と題して、Amazon DynamoDB でjsonドキュメントのプットを試してみました。
今回は『Amazon DynamoDB編~jsonドキュメント02~』と題して、Amazon DynamoDB でjsonドキュメントの読み込みを試してみたいと思います。
1.アイテムの取得
登録したアイテムを取得してみます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
#!/usr/bin/env ruby # coding: utf-8 require 'aws-sdk' require 'json' dynamo_db = Aws::DynamoDB::Client.new( :region => "ap-northeast-1", :access_key_id => "xxxxxxxxxxxxxxxxxxxxxxxxxxx", :secret_access_key => "xxxxxxxxxxxxxxxxxxxxxxxxxxx" ) resp = dynamo_db.get_item( table_name: 'devknowcom', key: { 'host' => '127.0.0.1', }, attributes_to_get: ["document"], consistent_read: true ) puts resp.item.to_s |
実行してみます。
{“document”=>{“host”=>”127.0.0.1”, “path”=>”/”, “method”=>”GET”, “referer”=>”-“, “code”=>”200”, “user”=>”-“, “agent”=>”curl/7.35.0”, “size”=>”11764”}}
ドキュメントで返ってきたのがわかります。
2.ドキュメントの一部を読み込み
ドキュメントの一部を取得してみます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
#!/usr/bin/env ruby # coding: utf-8 require 'aws-sdk' require 'json' dynamo_db = Aws::DynamoDB::Client.new( :region => "ap-northeast-1", :access_key_id => "xxxxxxxxxxxxxxxxxxxxxxxxxxx", :secret_access_key => "xxxxxxxxxxxxxxxxxxxxxxxxxxx" ) resp = dynamo_db.get_item( table_name: 'devknowcom', key: { 'host' => '127.0.0.1', }, projection_expression: "document.code", consistent_read: true ) puts resp.item.to_s |
一部だけ取得できているのがわかります。
1 |
{"document"=>{"code"=>"200"}} |
3.アイテムのアップデート
アイテムのアップデートを試してみます。
pathに「index.html」を付けてみます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
#!/usr/bin/env ruby # coding: utf-8 require 'aws-sdk' require 'json' dynamo_db = Aws::DynamoDB::Client.new( :region => "ap-northeast-1", :access_key_id => "xxxxxxxxxxxxxxxxxxxxxxxxxxx", :secret_access_key => "xxxxxxxxxxxxxxxxxxxxxxxxxxx" ) dynamo_db.update_item( table_name: 'devknowcom', key: { 'host' => '127.0.0.1', }, attribute_updates: { "document" => { value: { "host"=>"127.0.0.1", "path"=>"/index.html", "method"=>"GET", "referer"=>"-", "code"=>"200", "user"=>"-", "agent"=>"curl/7.35.0", "size"=>"11764" }, action: "PUT" } } ) resp = dynamo_db.get_item( table_name: 'devknowcom', key: { 'host' => '127.0.0.1', }, attributes_to_get: ["document"], consistent_read: true ) puts resp.item.to_s |
更新されているのが分かります。
1 |
{"document"=>{"host"=>"127.0.0.1", "path"=>"/index.html", "method"=>"GET", "referer"=>"-", "code"=>"200", "user"=>"-", "agent"=>"curl/7.35.0", "size"=>"11764"}} |
いかがでしたでしょうか?
次回もお楽しみに!!!