rabbit-slide-myokoym-sapporoonga-20150614 2015.6.14.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 96d09bd74307fffd4171e96f170dd2000827ae6d
4
+ data.tar.gz: 5540395963b8c75bcb38631113b8ebb469445410
5
+ SHA512:
6
+ metadata.gz: fdd42ca52a91b64c9c1a75b9e0f9f602a47d7cd260314f6c93b6ecefd83664dafe7fe6b7b32ed390ba8362aab0e5a5d21d31fad6b35aeff89e6dd5003cd024d7
7
+ data.tar.gz: c372e4166a966279c59e2c0847a4e64a2cafa4c31a03f79268164bba3507756f1875553511c60536a5629c326725d4a8acd1b0dbf7e3d148e64a3c4bb8f58bfc
data/.rabbit ADDED
@@ -0,0 +1 @@
1
+ groonga-family-2015-in-sapporo.rab
data/README.rd ADDED
@@ -0,0 +1,33 @@
1
+ = Groonga族2015 in 札幌
2
+
3
+ Groongaを知った気になるための資料
4
+
5
+ == 作者向け
6
+
7
+ === 表示
8
+
9
+ rake
10
+
11
+ === 公開
12
+
13
+ rake publish
14
+
15
+ == 閲覧者向け
16
+
17
+ === インストール
18
+
19
+ gem install rabbit-slide-myokoym-sapporoonga-20150614
20
+
21
+ === 表示
22
+
23
+ rabbit rabbit-slide-myokoym-sapporoonga-20150614.gem
24
+
25
+ == 画像のクレジット
26
+
27
+ * groonga-logos.png
28
+ * (c) Groongaプロジェクト
29
+ * (c) Mroongaプロジェクト
30
+ * (c) PGroongaプロジェクト
31
+ * (c) Rangubaプロジェクト
32
+ * (c) Nroongaプロジェクト
33
+ * (c) Droongaプロジェクト
data/Rakefile ADDED
@@ -0,0 +1,17 @@
1
+ require "rabbit/task/slide"
2
+
3
+ # Edit ./config.yaml to customize meta data
4
+
5
+ spec = nil
6
+ Rabbit::Task::Slide.new do |task|
7
+ spec = task.spec
8
+ # spec.files += Dir.glob("doc/**/*.*")
9
+ # spec.files -= Dir.glob("private/**/*.*")
10
+ # spec.add_runtime_dependency("YOUR THEME")
11
+ end
12
+
13
+ desc "Tag #{spec.version}"
14
+ task :tag do
15
+ sh("git", "tag", "-a", spec.version.to_s, "-m", "Publish #{spec.version}")
16
+ sh("git", "push", "--tags")
17
+ end
data/config.yaml ADDED
@@ -0,0 +1,22 @@
1
+ ---
2
+ id: sapporoonga-20150614
3
+ base_name: groonga-family-2015-in-sapporo
4
+ tags:
5
+ - rabbit
6
+ - groonga
7
+ presentation_date: 2015-06-14
8
+ version: 2015.6.14.0
9
+ licenses:
10
+ - CC BY-SA 4.0
11
+ slideshare_id:
12
+ speaker_deck_id:
13
+ ustream_id:
14
+ vimeo_id:
15
+ youtube_id:
16
+ author:
17
+ markup_language: :rd
18
+ name: Masafumi Yokoyama
19
+ email: myokoym@gmail.com
20
+ rubygems_user: myokoym
21
+ slideshare_user: myokoym
22
+ speaker_deck_user: myokoym
@@ -0,0 +1,204 @@
1
+ = Groonga族2015 in 札幌
2
+
3
+ # : subtitle
4
+ # サブタイトル
5
+ : author
6
+ 横山昌史
7
+ : institution
8
+ 株式会社クリアコード
9
+ : content-source
10
+ 全文検索エンジンGroonga勉強会@札幌
11
+ : date
12
+ 2015-06-14
13
+ : allotted-time
14
+ 18m
15
+ : theme
16
+ groonga
17
+
18
+ = 目的
19
+
20
+ Groongaを理解した気分になる
21
+
22
+ = 内容
23
+
24
+ * Groongaとは
25
+ * Groonga族の紹介
26
+ * Groongaイベントの紹介
27
+
28
+ = 内容
29
+
30
+ * ((*Groongaとは*))
31
+ * Groonga族の紹介
32
+ * Groongaイベントの紹介
33
+
34
+ = Groongaとは
35
+
36
+ * 国産の全文検索エンジン
37
+ * 参照を止めずに更新できる
38
+ * 高速なドリルダウン
39
+ * カラムストア機能付き
40
+
41
+ = 全文検索
42
+
43
+ * インデックスを使った検索
44
+ * 数がめっちゃ増えても速度を保てる
45
+ * 文書のスコア付け
46
+ * 単語の正規化(ノーマライズ)
47
+ * 「あ」と「ア」など
48
+
49
+ = 国産
50
+
51
+ * 日本語サポートが充実
52
+ * 毎月肉の日(29日)にリリース
53
+
54
+ = 参照ロックフリー
55
+
56
+ * 更新中も検索できる
57
+ * 更新後、すぐに検索結果に反映される
58
+
59
+ = ドリルダウン
60
+
61
+ * 検索結果をグループ分け
62
+ * グループごとの件数がわかる
63
+ * そこから絞り込み
64
+ * 0件でがっかりしなくて済む
65
+
66
+ = カラムストア
67
+
68
+ * KVSのような機能
69
+ * KVSとしても使える
70
+ * Groongaは自分でストレージを持っている
71
+ * ストレージを持たない全文検索エンジンもある
72
+
73
+ = 内容
74
+
75
+ * (('del:Groongaとは'))
76
+ * ((*Groonga族の紹介*))
77
+ * Groongaイベントの紹介
78
+
79
+ = 主なGroonga族
80
+
81
+ # image
82
+ # src = images/groonga-logos.png
83
+ # relative_width = 90
84
+
85
+ = (('tag:groonga:G'))roonga
86
+
87
+ * C言語のライブラリー
88
+ * コマンドラインやHTTPクエリーのインターフェイス
89
+ * 毎月肉の日リリース
90
+ * (('note:https://vimeo.com/54852941'))
91
+
92
+ = (('tag:mroonga:M'))roonga
93
+
94
+ * MySQLのストレージエンジン
95
+ * SQLで全文検索、位置情報検索
96
+ * (('note:http://www.slideshare.net/Kentoku/mroonga-20131129'))
97
+ * (('note:http://slide.rabbit-shocker.org/authors/kou/osc-2014-tokyo-fall/'))
98
+
99
+ = (('tag:nroonga:N'))roonga
100
+
101
+ * Node.jsバインディング
102
+ * クエリーのAPIを提供
103
+ * Buzztter
104
+ * (('note:https://speakerdeck.com/dara/nroonga-groonga-api'))
105
+
106
+ = (('tag:rroonga:R'))roonga
107
+
108
+ * Rubyバインディング
109
+ * DB API層のライブラリー
110
+ * クエリーよりも細かい操作が可能
111
+ * Groongaの追っかけリリース
112
+
113
+ = (('tag:droonga:D'))roonga
114
+
115
+ * Distributedの"D"
116
+ * 分散型全文検索エンジン
117
+ * (('note:http://droonga.org/ja/'))
118
+ * Sharetary
119
+ * (('note:https://github.com/clear-code/sharetary'))
120
+
121
+ = (('tag:pgroonga:PG'))roonga
122
+
123
+ # blockquote
124
+ # title = "https://github.com/pgroonga/pgroonga"
125
+ PGroongaはPostgreSQLからインデックスとして Groongaを使うための拡張機能です。
126
+
127
+ = (('tag:pgroonga:PG'))roonga
128
+
129
+ # blockquote
130
+ # title = "https://github.com/pgroonga/pgroonga"
131
+ PostgreSQLは標準では日本語で全文検索できませんが、PGroongaを使うと日本 語で高速に全文検索できるようになります。
132
+
133
+ = (('tag:pgroonga:PG'))roonga
134
+
135
+ * PostgreSQLで日本語全文検索
136
+ * LIKEとpg_bigmとPGroongaの比較
137
+ * (('note:http://slide.rabbit-shocker.org/authors/kou/postgresql-unconference-tokyo-2015/'))
138
+
139
+ = まだまだいるよ
140
+
141
+ * 関連プロジェクト
142
+ * (('note:http://groonga.org/ja/related-projects.html'))
143
+ * 利用者のみなさん
144
+ * (('note:http://groonga.org/ja/users/'))
145
+
146
+ = 内容
147
+
148
+ * (('del:Groongaとは'))
149
+ * (('del:Groonga族の紹介'))
150
+ * ((*Groongaイベントの紹介*))
151
+
152
+ = Groongaイベント
153
+
154
+ * Groongaドキュメント読書会
155
+ * Groongaソースコード読書会
156
+ * 全文検索エンジンGroongaを囲む夕べ
157
+ * 草の根Groongaイベント
158
+
159
+ = ドキュメント読書会
160
+
161
+ * Web上のドキュメント輪読会
162
+ * ぐるなびさんで開催
163
+ * 読んだ人が自分の言葉でまとめる
164
+ * 読書会の進め方
165
+ * (('note:http://slide.rabbit-shocker.org/authors/kou/groonga-document-read-5/'))
166
+
167
+ = ソースコード読書会
168
+
169
+ * ソースコードをデバッガで追う会(こわくないよ)(たぶん)
170
+ * ビジネスバンクグループさんで開催
171
+ * Groongaソースコード読書会2
172
+ * (('note:https://groonga.doorkeeper.jp/events/26764'))
173
+
174
+ = Groongaを囲む夕べ
175
+
176
+ * 年に1度、いい肉の日(11月29日)に開催
177
+ * Groonga開発チームから今年のアップデート内容と今後の展望を聞ける
178
+ * Groongaユーザー間で情報交換できる
179
+
180
+ = 草の根Groonga
181
+
182
+ * 話題を特化したGroongaイベント
183
+ * ユーザーがやりたいテーマで自由に開催
184
+ * 開発者もできるだけ協力
185
+ * (('note:http://osdn.jp/projects/groonga/lists/archive/dev/2013-December/001937.html'))
186
+
187
+ = まとめ
188
+
189
+ * ((*(('del:Groongaとは'))*))
190
+ * ((*(('del:Groonga族の紹介'))*))
191
+ * ((*(('del:Groongaイベントの紹介'))*))
192
+
193
+ = まとめ
194
+
195
+ * 検索対象が増えて遅くなったと感じたら全文検索エンジンの検討をおすすめ
196
+ * Groongaはいろいろな場面でいろいろな使い方ができる
197
+ * コミュニティもあるよ
198
+
199
+ = 参考
200
+
201
+ * Groonga族2013
202
+ * (('note:http://slide.rabbit-shocker.org/authors/kou/groonga-night-4/'))
203
+ * Groonga族2014
204
+ * (('note:http://slide.rabbit-shocker.org/authors/kou/groonga-night-5/'))
Binary file
metadata ADDED
@@ -0,0 +1,65 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rabbit-slide-myokoym-sapporoonga-20150614
3
+ version: !ruby/object:Gem::Version
4
+ version: 2015.6.14.0
5
+ platform: ruby
6
+ authors:
7
+ - Masafumi Yokoyama
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-06-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rabbit
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 2.0.2
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 2.0.2
27
+ description: Groongaを知った気になるための資料
28
+ email:
29
+ - myokoym@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".rabbit"
35
+ - README.rd
36
+ - Rakefile
37
+ - config.yaml
38
+ - groonga-family-2015-in-sapporo.rab
39
+ - images/groonga-logos.png
40
+ - pdf/sapporoonga-20150614-groonga-family-2015-in-sapporo.pdf
41
+ homepage: http://slide.rabbit-shocker.org/authors/myokoym/sapporoonga-20150614/
42
+ licenses:
43
+ - CC BY-SA 4.0
44
+ metadata: {}
45
+ post_install_message:
46
+ rdoc_options: []
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
59
+ requirements: []
60
+ rubyforge_project:
61
+ rubygems_version: 2.2.2
62
+ signing_key:
63
+ specification_version: 4
64
+ summary: Groonga族2015 in 札幌
65
+ test_files: []