summaryrefslogtreecommitdiff
path: root/docs/intro/data-availability.rst
diff options
context:
space:
mode:
authordrebs <drebs@riseup.net>2017-10-03 12:53:17 -0300
committerdrebs <drebs@riseup.net>2017-10-03 13:19:25 -0300
commitacfe776f00f10a4ad700796993eef1b989432e91 (patch)
tree57664abfb0a5db04d30a267f5434b3909c878bd2 /docs/intro/data-availability.rst
parent2af51b6665b90c7e9470aacde664ac6f44290a1d (diff)
[doc] add intro section with reviwed content from old doc
Diffstat (limited to 'docs/intro/data-availability.rst')
-rw-r--r--docs/intro/data-availability.rst21
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/intro/data-availability.rst b/docs/intro/data-availability.rst
new file mode 100644
index 00000000..cf65428e
--- /dev/null
+++ b/docs/intro/data-availability.rst
@@ -0,0 +1,21 @@
+The importance of data availability
+===================================
+
+Users today demand high data availability in their applications. As a user
+switches from device to device, the expectation is that each application will
+reflect the same state information across devices. Additionally, if all devices
+are lost or destroyed, the contemporary user expects to be able to restore her
+or his application data from the cloud.
+
+In many ways, data availability has become a necessary precondition for an
+application to be considered "user friendly". Unfortunately, most applications
+attempt to provide high data availability by rolling their own custom solution
+or relying on a third party API, such as Dropbox. This approach is has several
+drawbacks: the user has no control or access to the data should they wish to
+switch applications or data providers; custom data synchronizations schemes are
+often an afterthought, poorly designed, and vulnerable to attack and data
+breaches; and the user must place total trust in the provider to safeguard her
+or his information against requests by repressive governments.
+
+Soledad provides secure data availability in a way that is easy for application
+developers to incorporate into their code.