Search:

Search all manuals
Search this manual
Manual
Couchbase Server マニュアル 2.0
Community Wiki and Resources
Couchbase Server 2.0をダウンロード
Couchbase 開発者ガイド 2.0
クライアントライブラリ
Couchbase Server フォーラム
Additional Resources
Community Wiki
Community Forums
Couchbase SDKs
Parent Section
C Couchbaseのサンプルバケット
Chapter Sections
Chapters

C.2. Beer Sampleバケット

C.2.1. brewery_beersビュー
C.2.2. by_locationビュー

ビールのサンプルデータは、オブジェクト間の参照を含む様々なアイテムを記述するために使用される文書構造の組み合わせを示し、また、ビューの構造とレイアウトを示すいくつかのサンプルビューが含まれています。

最初のドキュメントタイプは 'beer'ドキュメントです。

{
   "name": "Piranha Pale Ale",
   "abv": 5.7,
   "ibu": 0,
   "srm": 0,
   "upc": 0,
   "type": "beer",
   "brewery_id": "110f04166d",
   "updated": "2010-07-22 20:00:20",
   "description": "",
   "style": "American-Style Pale Ale",
   "category": "North American Ale"
}

ビールのドキュメントには、名前(name)、アルコール含有量(abv)とカテゴリー(category)などのビールに関する主要な情報が含まれています。

個々のビールドキュメントはbrewery_idフィールドを使用して醸造所ドキュメントと紐付いています。

{
   "name": "Commonwealth Brewing #1",
   "city": "Boston",
   "state": "Massachusetts",
   "code": "",
   "country": "United States",
   "phone": "",
   "website": "",
   "type": "brewery",
   "updated": "2010-07-22 20:00:20",
   "description": "",
   "address": [
   ],
   "geo": {
       "accuracy": "APPROXIMATE",
       "lat": 42.3584,
       "lng": -71.0598
   }
}

醸造所レコードは醸造所に関する基本的な連絡先と住所情報が含まれており、醸造所の場所の緯度と経度から成る位置レコードが含まれています。

Couchbase Serverのビュー機能を示すために、3つのビューが定義されています。