rabbit-slide-kou-postgresql-conference-2015 2015.11.27.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rabbit +1 -0
- data/README.rd +46 -0
- data/Rakefile +17 -0
- data/config.yaml +24 -0
- data/images/inverted-index.svg +885 -0
- data/images/read-while-write-gin.svg +364 -0
- data/images/read-while-write-groonga.svg +325 -0
- data/images/read-while-write-pgroonga.svg +325 -0
- data/images/reference-lock-free-idea.svg +547 -0
- data/images/search-with-inverted-index.svg +1021 -0
- data/pdf/postgresql-conference-2015-pgroonga-implementation.pdf +0 -0
- data/pgroonga-implementation.rab +661 -0
- data/theme.rb +5 -0
- metadata +88 -0
data/theme.rb
ADDED
metadata
ADDED
@@ -0,0 +1,88 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rabbit-slide-kou-postgresql-conference-2015
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2015.11.27.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Kouhei Sutou
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-11-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
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rabbit-theme-groonga
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: |-
|
42
|
+
PGroongaはPostgreSQLに日本語全文検索機能を追加する拡張機能で、インデックスアクセスメソッドとして実装されています。インデックスアクセスメソッドの拡張機能は少なく、どのように実装すればよいか知らない人が多いでしょう。
|
43
|
+
|
44
|
+
PGroonga の実装を紹介することでインデックスアクセスメソッドをどのように実装すればよいかを説明します。
|
45
|
+
email:
|
46
|
+
- kou@clear-code.com
|
47
|
+
executables: []
|
48
|
+
extensions: []
|
49
|
+
extra_rdoc_files: []
|
50
|
+
files:
|
51
|
+
- ".rabbit"
|
52
|
+
- README.rd
|
53
|
+
- Rakefile
|
54
|
+
- config.yaml
|
55
|
+
- images/inverted-index.svg
|
56
|
+
- images/read-while-write-gin.svg
|
57
|
+
- images/read-while-write-groonga.svg
|
58
|
+
- images/read-while-write-pgroonga.svg
|
59
|
+
- images/reference-lock-free-idea.svg
|
60
|
+
- images/search-with-inverted-index.svg
|
61
|
+
- pdf/postgresql-conference-2015-pgroonga-implementation.pdf
|
62
|
+
- pgroonga-implementation.rab
|
63
|
+
- theme.rb
|
64
|
+
homepage: http://slide.rabbit-shocker.org/authors/kou/postgresql-conference-2015/
|
65
|
+
licenses:
|
66
|
+
- CC BY-SA 4.0
|
67
|
+
metadata: {}
|
68
|
+
post_install_message:
|
69
|
+
rdoc_options: []
|
70
|
+
require_paths:
|
71
|
+
- lib
|
72
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0'
|
82
|
+
requirements: []
|
83
|
+
rubyforge_project:
|
84
|
+
rubygems_version: 2.2.2
|
85
|
+
signing_key:
|
86
|
+
specification_version: 4
|
87
|
+
summary: PGroongaの実装
|
88
|
+
test_files: []
|