diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-04-26 16:13:05 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-04-26 16:13:05 -0500 |
commit | 90e7fc673878d4eb68db41ae49c47fb543a35a87 (patch) | |
tree | 9ccdbc1aad7ff3059ef7df05d8b71ea4d3f5b293 /docs/source | |
parent | c4771d724768ec0bf7f00e6fda5e4d9da58644bd (diff) | |
download | mediagoblin-90e7fc673878d4eb68db41ae49c47fb543a35a87.tar.lz mediagoblin-90e7fc673878d4eb68db41ae49c47fb543a35a87.tar.xz mediagoblin-90e7fc673878d4eb68db41ae49c47fb543a35a87.zip |
word-wrapping the public/queue storage explainations in storage.rst
Diffstat (limited to 'docs/source')
-rw-r--r-- | docs/source/devel/storage.rst | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/docs/source/devel/storage.rst b/docs/source/devel/storage.rst index ce89db09..215f9579 100644 --- a/docs/source/devel/storage.rst +++ b/docs/source/devel/storage.rst @@ -11,9 +11,18 @@ Dynamic content: queue_store and public_store Two instances of the StorageInterface come attached to your app. These are: -+ **queue_store:** When a user submits a fresh piece of media for their gallery, before the Processing stage, that piece of media sits here in the queue_store. (It's possible that we'll rename this to "private_store" and start storing more non-publicly-stored stuff in the future...). This is a StorageInterface implementation instance. Visitors to your site probably cannot see it... it isn't designed to be seen, anyway. - -+ **public_store:** After your media goes through processing it gets moved to the public store. This is also a StorageInterface implelementation, and is for stuff that's intended to be seen by site visitors. ++ **queue_store:** When a user submits a fresh piece of media for + their gallery, before the Processing stage, that piece of media sits + here in the queue_store. (It's possible that we'll rename this to + "private_store" and start storing more non-publicly-stored stuff in + the future...). This is a StorageInterface implementation + instance. Visitors to your site probably cannot see it... it isn't + designed to be seen, anyway. + ++ **public_store:** After your media goes through processing it gets + moved to the public store. This is also a StorageInterface + implelementation, and is for stuff that's intended to be seen by + site visitors. The workbench ~~~~~~~~~~~~~ |