- SELECT 句
- FROM 句
- WHERE 句
- GROUP BY 句
- HAVING 句
- WINDOW 句
This file contains hidden or 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
puts (("a".."z").to_a + ("A".."Z").to_a + (0..9).to_a).sample(7).join |
Written by sunaot
データモデリング
- データと情報
- エンティティとリレーションシップ
- リソースエンティティとイベントエンティティ
This file contains hidden or 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
MIT Media Lab新所長、伊藤穰一とPivotalのCTO,Ian McFarlandが語る「アジャイルスタートアップ」 | |
http://atnd.org/events/16029 | |
■感想 | |
・アジャイルについて | |
開発手法・業務手法と言うよりは、思想の域まで昇華している。 | |
もはや欧米ではビジネスの手法として認識になりつつあるような話し方だった。 | |
・TEFCASに似ている | |
→TEFCASをご存じない人へ |
This file contains hidden or 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
import System.Random (randomRIO) | |
import Data.List (subsequences) | |
import Control.Applicative ((<$>)) | |
import Control.Monad (replicateM) | |
main :: IO () | |
main = test 4 10 | |
test :: Int -> Int -> IO () |
#NoSQLデータモデリング技法
原文:NoSQL Data Modeling Techniques « Highly Scalable Blog
I translated this article for study. contact matope[dot]ono[gmail] if any problem.
NoSQLデータベースはスケーラビリティ、パフォーマンス、一貫性といった様々な非機能要件から比較される。NoSQLのこの側面は実践と理論の両面からよく研究されている。ある種の非機能特性はNoSQLを利用する主な動機であり、NoSQLシステムによく適用されるCAP定理がそうであるように分散システムの基本的原則だからだ。一方で、NoSQLデータモデリングはあまり研究されておらず、リレーショナルデータベースに見られるようなシステマティックな理論に欠けている。本稿で、私はデータモデリングの視点からのNoSQLシステムファミリーの短い比較といくつかの共通するモデリングテクニックの要約を解説したい。
本稿をレビューして文法を清書してくれたDaniel Kirkdorfferに感謝したいと思う
NewerOlder