friendly_postgres 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +2 -0
- data/.gitignore +26 -0
- data/APACHE-LICENSE +202 -0
- data/CHANGELOG.md +19 -0
- data/CONTRIBUTORS.md +7 -0
- data/LICENSE +20 -0
- data/README.md +265 -0
- data/Rakefile +68 -0
- data/TODO.md +5 -0
- data/VERSION +1 -0
- data/examples/friendly.yml +7 -0
- data/friendly.gemspec +232 -0
- data/lib/friendly.rb +54 -0
- data/lib/friendly/associations.rb +7 -0
- data/lib/friendly/associations/association.rb +34 -0
- data/lib/friendly/associations/set.rb +37 -0
- data/lib/friendly/attribute.rb +91 -0
- data/lib/friendly/boolean.rb +10 -0
- data/lib/friendly/cache.rb +24 -0
- data/lib/friendly/cache/by_id.rb +33 -0
- data/lib/friendly/config.rb +5 -0
- data/lib/friendly/data_store.rb +72 -0
- data/lib/friendly/document.rb +257 -0
- data/lib/friendly/document_table.rb +56 -0
- data/lib/friendly/index.rb +73 -0
- data/lib/friendly/memcached.rb +48 -0
- data/lib/friendly/named_scope.rb +17 -0
- data/lib/friendly/newrelic.rb +6 -0
- data/lib/friendly/query.rb +42 -0
- data/lib/friendly/scope.rb +100 -0
- data/lib/friendly/scope_proxy.rb +45 -0
- data/lib/friendly/sequel_monkey_patches.rb +34 -0
- data/lib/friendly/storage.rb +31 -0
- data/lib/friendly/storage_factory.rb +24 -0
- data/lib/friendly/storage_proxy.rb +103 -0
- data/lib/friendly/table.rb +15 -0
- data/lib/friendly/table_creator.rb +48 -0
- data/lib/friendly/time.rb +14 -0
- data/lib/friendly/translator.rb +32 -0
- data/lib/friendly/uuid.rb +148 -0
- data/rails/init.rb +3 -0
- data/spec/config.yml.example +7 -0
- data/spec/fakes/data_store_fake.rb +29 -0
- data/spec/fakes/database_fake.rb +12 -0
- data/spec/fakes/dataset_fake.rb +28 -0
- data/spec/fakes/document.rb +18 -0
- data/spec/fakes/serializer_fake.rb +12 -0
- data/spec/fakes/time_fake.rb +12 -0
- data/spec/integration/ad_hoc_scopes_spec.rb +42 -0
- data/spec/integration/basic_object_lifecycle_spec.rb +114 -0
- data/spec/integration/batch_insertion_spec.rb +29 -0
- data/spec/integration/convenience_api_spec.rb +25 -0
- data/spec/integration/count_spec.rb +12 -0
- data/spec/integration/default_value_spec.rb +15 -0
- data/spec/integration/find_via_cache_spec.rb +101 -0
- data/spec/integration/finder_spec.rb +64 -0
- data/spec/integration/has_many_spec.rb +18 -0
- data/spec/integration/index_spec.rb +57 -0
- data/spec/integration/named_scope_spec.rb +34 -0
- data/spec/integration/pagination_spec.rb +63 -0
- data/spec/integration/scope_chaining_spec.rb +22 -0
- data/spec/integration/table_creator_spec.rb +64 -0
- data/spec/integration/write_through_cache_spec.rb +53 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +103 -0
- data/spec/unit/associations/association_spec.rb +57 -0
- data/spec/unit/associations/set_spec.rb +43 -0
- data/spec/unit/attribute_spec.rb +105 -0
- data/spec/unit/cache_by_id_spec.rb +102 -0
- data/spec/unit/cache_spec.rb +21 -0
- data/spec/unit/config_spec.rb +4 -0
- data/spec/unit/data_store_spec.rb +188 -0
- data/spec/unit/document_spec.rb +358 -0
- data/spec/unit/document_table_spec.rb +126 -0
- data/spec/unit/friendly_spec.rb +25 -0
- data/spec/unit/index_spec.rb +196 -0
- data/spec/unit/memcached_spec.rb +114 -0
- data/spec/unit/named_scope_spec.rb +16 -0
- data/spec/unit/query_spec.rb +104 -0
- data/spec/unit/scope_proxy_spec.rb +44 -0
- data/spec/unit/scope_spec.rb +113 -0
- data/spec/unit/storage_factory_spec.rb +59 -0
- data/spec/unit/storage_proxy_spec.rb +218 -0
- data/spec/unit/translator_spec.rb +96 -0
- data/website/index.html +210 -0
- data/website/scripts/clipboard.swf +0 -0
- data/website/scripts/shBrushAS3.js +61 -0
- data/website/scripts/shBrushBash.js +66 -0
- data/website/scripts/shBrushCSharp.js +67 -0
- data/website/scripts/shBrushColdFusion.js +102 -0
- data/website/scripts/shBrushCpp.js +99 -0
- data/website/scripts/shBrushCss.js +93 -0
- data/website/scripts/shBrushDelphi.js +57 -0
- data/website/scripts/shBrushDiff.js +43 -0
- data/website/scripts/shBrushErlang.js +54 -0
- data/website/scripts/shBrushGroovy.js +69 -0
- data/website/scripts/shBrushJScript.js +52 -0
- data/website/scripts/shBrushJava.js +59 -0
- data/website/scripts/shBrushJavaFX.js +60 -0
- data/website/scripts/shBrushPerl.js +74 -0
- data/website/scripts/shBrushPhp.js +91 -0
- data/website/scripts/shBrushPlain.js +35 -0
- data/website/scripts/shBrushPowerShell.js +76 -0
- data/website/scripts/shBrushPython.js +66 -0
- data/website/scripts/shBrushRuby.js +57 -0
- data/website/scripts/shBrushScala.js +53 -0
- data/website/scripts/shBrushSql.js +68 -0
- data/website/scripts/shBrushVb.js +58 -0
- data/website/scripts/shBrushXml.js +71 -0
- data/website/scripts/shCore.js +30 -0
- data/website/scripts/shLegacy.js +30 -0
- data/website/styles/friendly.css +103 -0
- data/website/styles/help.png +0 -0
- data/website/styles/ie.css +35 -0
- data/website/styles/magnifier.png +0 -0
- data/website/styles/page_white_code.png +0 -0
- data/website/styles/page_white_copy.png +0 -0
- data/website/styles/print.css +29 -0
- data/website/styles/printer.png +0 -0
- data/website/styles/screen.css +257 -0
- data/website/styles/shCore.css +330 -0
- data/website/styles/shThemeDefault.css +173 -0
- data/website/styles/shThemeDjango.css +176 -0
- data/website/styles/shThemeEclipse.css +190 -0
- data/website/styles/shThemeEmacs.css +175 -0
- data/website/styles/shThemeFadeToGrey.css +177 -0
- data/website/styles/shThemeMidnight.css +175 -0
- data/website/styles/shThemeRDark.css +175 -0
- metadata +302 -0
data/.document
ADDED
data/.gitignore
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
## MAC OS
|
2
|
+
.DS_Store
|
3
|
+
|
4
|
+
## TEXTMATE
|
5
|
+
*.tmproj
|
6
|
+
tmtags
|
7
|
+
|
8
|
+
## EMACS
|
9
|
+
*~
|
10
|
+
\#*
|
11
|
+
.\#*
|
12
|
+
|
13
|
+
## VIM
|
14
|
+
*.swp
|
15
|
+
|
16
|
+
## PROJECT::GENERAL
|
17
|
+
coverage
|
18
|
+
rdoc
|
19
|
+
pkg
|
20
|
+
|
21
|
+
## PROJECT::SPECIFIC
|
22
|
+
test.rb
|
23
|
+
test_active_record.rb
|
24
|
+
spec/config.yml
|
25
|
+
.yardoc
|
26
|
+
doc
|
data/APACHE-LICENSE
ADDED
@@ -0,0 +1,202 @@
|
|
1
|
+
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
5
|
+
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
+
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
177
|
+
END OF TERMS AND CONDITIONS
|
178
|
+
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
180
|
+
|
181
|
+
To apply the Apache License to your work, attach the following
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
+
replaced with your own identifying information. (Don't include
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
185
|
+
comment syntax for the file format. We also recommend that a
|
186
|
+
file or class name and description of purpose be included on the
|
187
|
+
same "printed page" as the copyright notice for easier
|
188
|
+
identification within third-party archives.
|
189
|
+
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
191
|
+
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
+
you may not use this file except in compliance with the License.
|
194
|
+
You may obtain a copy of the License at
|
195
|
+
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
+
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
+
See the License for the specific language governing permissions and
|
202
|
+
limitations under the License.
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
Changelog
|
2
|
+
=========
|
3
|
+
|
4
|
+
### 0.4.2
|
5
|
+
|
6
|
+
* (nullstyle) convert UUID to SQL::Blob so that Sequel can properly escape it in databases that don't treat binary strings like regular strings.
|
7
|
+
|
8
|
+
### 0.4.1
|
9
|
+
|
10
|
+
* (jamesgolick) Fix for ruby 1.9.1.
|
11
|
+
|
12
|
+
### 0.4.0
|
13
|
+
|
14
|
+
* (jamesgolick) Add scope chaining. See the README and the docs for Friendly::Scope.
|
15
|
+
* (jamesgolick) Add has_many association.
|
16
|
+
* (jamesgolick) Add ad-hoc scopes. See the docs for Document.scope.
|
17
|
+
* (jamesgolick) Add named_scope functionality. See the docs for Document.named_scope.
|
18
|
+
* (jeffrafter + jamesgolick) DDL generation now supports custom types. Previously, it would only work with types that Sequel already supported. Now, if you want to register a custom type, use Friendly::Attribute.register_type(klass, sql_type, &conversion_method).
|
19
|
+
|
data/CONTRIBUTORS.md
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
Contributors to Friendly
|
2
|
+
========================
|
3
|
+
|
4
|
+
* James Golick - http://jamesgolick.com (github: jamesgolick)
|
5
|
+
* Jonathan Palardy - http://technotales.wordpress.com (github: jpalardy)
|
6
|
+
* Jeff Rafter - http://socialorange.com (github: jeffrafter)
|
7
|
+
* Scott Fleckenstein - http://nullstyle.com (github: nullstyle)
|
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 James Golick
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,265 @@
|
|
1
|
+
Friendly
|
2
|
+
========
|
3
|
+
|
4
|
+
### Short Version
|
5
|
+
|
6
|
+
This is an implementation of the ideas found in [this article](http://bret.appspot.com/entry/how-friendfeed-uses-mysql) about how FriendFeed uses MySQL. You should read that article for all the details.
|
7
|
+
|
8
|
+
### Long Version
|
9
|
+
|
10
|
+
Turn MySQL in to a document db!
|
11
|
+
|
12
|
+
Why? Everybody is super excited about NoSQL. Aside from the ridiculous rumour that removing SQL makes things magically scalable, there's a lot of reason to look forward to these new data storage solutions.
|
13
|
+
|
14
|
+
One of the biggest improvements is where schema / index changes are concerned. When you have a ton of data, migrating MySQL tables takes forever and locks the table during the process. Document dbs like mongo and couch, on the other hand, are schemaless. You just add and remove fields as you need them.
|
15
|
+
|
16
|
+
But, the available document oriented solutions are still young. While many of them show great promise, they've all got their quirks. For all its flaws, MySQL is a rock. It's pretty fast, and battle-hardened. We *never* have problems with MySQL in production.
|
17
|
+
|
18
|
+
Fortunately, with a little extra work on the client-side, we can get the flexibility of a doc db in MySQL!
|
19
|
+
|
20
|
+
### How it Works
|
21
|
+
|
22
|
+
Let's say we had a user model.
|
23
|
+
|
24
|
+
class User
|
25
|
+
include Friendly::Document
|
26
|
+
|
27
|
+
attribute :name, String
|
28
|
+
attribute :age, Integer
|
29
|
+
end
|
30
|
+
|
31
|
+
Friendly always stores your documents in a table with the same schema:
|
32
|
+
|
33
|
+
CREATE TABLE users (
|
34
|
+
added_id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
35
|
+
id BINARY(16) NOT NULL,
|
36
|
+
created_at DATETIME NOT NULL,
|
37
|
+
updated_at DATETIME NOT NULL,
|
38
|
+
attributes TEXT,
|
39
|
+
UNIQUE KEY (id),
|
40
|
+
) ENGINE=InnoDB;
|
41
|
+
|
42
|
+
- added_id is there because InnoDB stores records on disk in sequential primary key order. Having recently inserted objects together on disk is usually a win.
|
43
|
+
- id is a UUID (instance of Friendly::UUID).
|
44
|
+
- created_at and updated_at are exactly what they sound like - automatically managed by Friendly.
|
45
|
+
- attributes is where all the attributes of your object are stored. They get serialized to json and stored in there.
|
46
|
+
|
47
|
+
We can instantiate and save our model like an ActiveRecord object.
|
48
|
+
|
49
|
+
@user = User.new :name => "James"
|
50
|
+
@user.save
|
51
|
+
|
52
|
+
As is, our user model only supports queries by id.
|
53
|
+
|
54
|
+
User.find(id)
|
55
|
+
User.first(:id => id)
|
56
|
+
User.all(:id => [1,2,3])
|
57
|
+
|
58
|
+
Not great. We'd probably want to be able to query by name, at the very least.
|
59
|
+
|
60
|
+
Indexes
|
61
|
+
=======
|
62
|
+
|
63
|
+
To support richer queries, Friendly maintains its own indexes in separate tables. To index our user model on name, we'd create a table like this:
|
64
|
+
|
65
|
+
CREATE TABLE index_users_on_name (
|
66
|
+
name varchar(256) NOT NULL,
|
67
|
+
id binary(16) NOT NULL,
|
68
|
+
PRIMARY KEY (name, id)
|
69
|
+
UNIQUE KEY unique_index_on_id (id)
|
70
|
+
) ENGINE=InnoDB DEFAULT CHARSET=latin1
|
71
|
+
|
72
|
+
Then, we'd tell friendly to maintain that index for us:
|
73
|
+
|
74
|
+
class User
|
75
|
+
# ... snip ...
|
76
|
+
|
77
|
+
indexes :name
|
78
|
+
end
|
79
|
+
|
80
|
+
Any time friendly saves a user object, it will update the index as well. That way, we can query by name:
|
81
|
+
|
82
|
+
User.first(:name => "James")
|
83
|
+
User.all(:name => ["James", "John", "Jonathan"])
|
84
|
+
|
85
|
+
One of the big advantages to this approach is that indexes can be built offline. If you need a new index, you can write a script to generate it in the background without affecting the running application. Then, once it's ready, you can start querying it.
|
86
|
+
|
87
|
+
Caching
|
88
|
+
=======
|
89
|
+
|
90
|
+
Friendly has built-in support for write-through caching.
|
91
|
+
|
92
|
+
First, install the memcached gem:
|
93
|
+
|
94
|
+
sudo gem install memcached
|
95
|
+
|
96
|
+
Then, configure your cache:
|
97
|
+
|
98
|
+
$cache = Memcached.new # you'll probably want to pass some params here.
|
99
|
+
Friendly.cache = Friendly::Memcached.new($cache)
|
100
|
+
|
101
|
+
Finally, declare the cache in your model:
|
102
|
+
|
103
|
+
class User
|
104
|
+
# ... snip ...
|
105
|
+
|
106
|
+
caches_by :id
|
107
|
+
end
|
108
|
+
|
109
|
+
This tells Friendly to automatically write through to cache on save, and read through to the cache if it needs to hit the database on a query.
|
110
|
+
|
111
|
+
Currently, only caching by id is supported, but caching of arbitrary indexes is planned.
|
112
|
+
|
113
|
+
__We're seeing a 99.8% cache hit rate in production with this code.__
|
114
|
+
|
115
|
+
Scopes
|
116
|
+
======
|
117
|
+
|
118
|
+
### Named Scopes
|
119
|
+
|
120
|
+
It's possible to create a scope that you can refer to by name:
|
121
|
+
|
122
|
+
class Post
|
123
|
+
attribute :author, String
|
124
|
+
|
125
|
+
named_scope :by_james, :author => "James"
|
126
|
+
end
|
127
|
+
|
128
|
+
Calling the scope will provide you with a Friendly:Scope object:
|
129
|
+
|
130
|
+
Post.by_james #=> #<Friendly::Scope>
|
131
|
+
|
132
|
+
That scope object supports a variety of methods. Calling any of the methods is the equivalent of calling those methods directly on Document with the scope's parameters.
|
133
|
+
|
134
|
+
e.g.
|
135
|
+
|
136
|
+
Post.by_james.all == Post.all(:author => "James")
|
137
|
+
Post.by_james.first == Post.first(:author => "James")
|
138
|
+
Post.by_james.paginate # => #<WillPaginate::Collection>
|
139
|
+
Post.by_james.build.name == "James"
|
140
|
+
@post = Post.by_james.create
|
141
|
+
@post.new_record? # => false
|
142
|
+
@post.name # => "James"
|
143
|
+
|
144
|
+
Each of the methods also accepts override parameters. The APIs are the same as on Document.
|
145
|
+
|
146
|
+
Post.by_james.all(:author => "Steve") == Post.all(:author => "Steve")
|
147
|
+
|
148
|
+
You can also compose arbitrary combinations of scopes with simple chaining.
|
149
|
+
|
150
|
+
class Post
|
151
|
+
# ... snip ...
|
152
|
+
named_scope :recent, :order! => :created_at.desc, :limit! => 4
|
153
|
+
indexes :name, :created_at
|
154
|
+
end
|
155
|
+
|
156
|
+
Post.by_james.recent == Post.all(:name => "James",
|
157
|
+
:order! => :created_at.desc,
|
158
|
+
:limit! => 4)
|
159
|
+
|
160
|
+
If two parameters conflict, the right-most scope takes precedence.
|
161
|
+
|
162
|
+
### Ad-hoc Scopes
|
163
|
+
|
164
|
+
You can also create a scope object on the fly:
|
165
|
+
|
166
|
+
Post.scope(:author => "Steve")
|
167
|
+
|
168
|
+
The object you get is identical to the one you get from a named_scope. So, see above for the API.
|
169
|
+
|
170
|
+
Associations
|
171
|
+
============
|
172
|
+
|
173
|
+
Friendly currently only supports has\_many associations.
|
174
|
+
|
175
|
+
Creating a has\_many is as simple as setting up the necessary association and foreign key.
|
176
|
+
|
177
|
+
_Note: Make sure that the target model is indexed on the foreign key. If it isn't, querying the association will raise Friendly::MissingIndex._
|
178
|
+
|
179
|
+
e.g.
|
180
|
+
|
181
|
+
class Post
|
182
|
+
attribute :user_id, Friendly::UUID
|
183
|
+
indexes :user_id
|
184
|
+
end
|
185
|
+
|
186
|
+
class User
|
187
|
+
has_many :posts
|
188
|
+
end
|
189
|
+
|
190
|
+
@user = User.create
|
191
|
+
@post = @user.posts.create
|
192
|
+
@user.posts.all == [@post] # => true
|
193
|
+
|
194
|
+
Friendly defaults the foreign key to class_name_id just like ActiveRecord. It also converts the name of the association to the name of the target class just like ActiveRecord does.
|
195
|
+
|
196
|
+
The biggest difference in semantics between Friendly's has\_many and active\_record's is that Friendly's just returns a Friendly::Scope object. If you want all the associated objects, you have to call #all to get them.
|
197
|
+
|
198
|
+
You can also use any other Friendly::Scope method like scope chaining.
|
199
|
+
|
200
|
+
# note: the Post.recent scope is defined in the above section
|
201
|
+
@user.posts.recent == Post.all(:user_id => @user.id,
|
202
|
+
:order! => :created_at.desc,
|
203
|
+
:limit! => 4)
|
204
|
+
|
205
|
+
See the section above or the Friendly::Scope docs for more details.
|
206
|
+
|
207
|
+
Installation
|
208
|
+
============
|
209
|
+
|
210
|
+
Friendly is available as a gem. Get it with:
|
211
|
+
|
212
|
+
sudo gem install friendly
|
213
|
+
|
214
|
+
Setup
|
215
|
+
=====
|
216
|
+
|
217
|
+
All you have to do is supply Friendly with some information about your database:
|
218
|
+
|
219
|
+
Friendly.configure :adapter => "mysql",
|
220
|
+
:host => "localhost",
|
221
|
+
:user => "root",
|
222
|
+
:password => "swordfish",
|
223
|
+
:database => "friendly_development"
|
224
|
+
|
225
|
+
Now, you're ready to rock.
|
226
|
+
|
227
|
+
If you're using rails, set friendly as a gem dependency:
|
228
|
+
|
229
|
+
config.gem "friendly"
|
230
|
+
|
231
|
+
...and drop something like this in config/friendly.yml (an example of such a config exists in examples/friendly.yml):
|
232
|
+
|
233
|
+
development:
|
234
|
+
:adapter: "mysql"
|
235
|
+
:host: "localhost"
|
236
|
+
:user: "root"
|
237
|
+
:password: "swordfish"
|
238
|
+
:database: "friendly_development"
|
239
|
+
|
240
|
+
Of course, you'll want to swap out these values for your own, fill in additional environments, and so forth.
|
241
|
+
|
242
|
+
Then, create some models, and run:
|
243
|
+
|
244
|
+
Friendly.create_tables!
|
245
|
+
|
246
|
+
That'll create all the necessary tables as best it can. This has worked well enough for me, but it's possible that certain table configurations will fail. It won't attempt to create any tables that already exist, so it's safe to run in an initializer or something.
|
247
|
+
|
248
|
+
TODO
|
249
|
+
====
|
250
|
+
|
251
|
+
- Online migrations. Add a version column to each model and a DSL to update schema from one version to another on read. This facilitates data transformations on the fly. If you want to transform the whole table at once, just iterate over all the objects, and save.
|
252
|
+
- Associations
|
253
|
+
- Offline indexer
|
254
|
+
- Caching of arbitrary indexes
|
255
|
+
- A lot more documentation
|
256
|
+
|
257
|
+
Credits
|
258
|
+
=======
|
259
|
+
|
260
|
+
Friendly was developed by James Golick & Jonathan Palardy at FetLife (nsfw).
|
261
|
+
|
262
|
+
Copyright (c) 2009 James Golick. See LICENSE for details.
|
263
|
+
|
264
|
+
Except for friendly/uuid.rb which is copyright Evan Weaver and Apache Licensed. See APACHE-LICENSE for details.
|
265
|
+
|