RxObservableDiskCache


Source link: https://github.com/pakoito/RxObservableDiskCache

RxObservableDiskCache

RxObservableDiskCache is a library to save the results of Singles or single value Observables request on a local disk cache, so the next time the same request is called you get an immediate result.

For the RxJava 2.X version, please go to RxObservableDiskCache2.

Rationale

RxObservableDiskCache was created with a single purpose: help you store your network results in a disk cache and refetch them as soon as they're re-requested. It also solves displaying values while waiting for network results, when the user is offline, or when the server is unavailable.

To provide a good UX your app should be able to work offline and also display results as soon as they're requested. Historically this has been done by storing your data on SQLite, or a custom network cache. These options introduce maintenance overhead: SQLite requires a strict data model, careful database updates, and usage of syntactic sugar libraries like ORMs to make it palatable. The custom network cache depends on your server team introducing etags and other similar mechanisms, which are not always available.

RxObservableDiskCache relies on a technology that's common on desktop and server: key-value disk stores. By using RxPaper behind the scenes it's able to efficiently store any result in an schemaless document just to refetch it later. This makes caching transparent for most network calls, you just need to configure them once with the correct caching policy. It's just one method call that wraps your Single or single value Observable.

To avoid your data getting stale due to time limits or versioning, RxObservableDiskCache allows you to store an arbitrary caching Policy. This Policy is any simple object that helps you identify whether your data is outdated and has to be removed. RxObservableDiskCache provides three different Policy objects, but you can create and use your own. This way you can decide how to handle staleness the same way you would do in SQLite or when using etags: by dropping the data, or programming defensively to account for model changes.

Updating from 1.X

As PaperDb 2.0 has updated from Kryo 3 to Kryo 4, the internal representation model has changed. PaperDb deals with these changes internally, so the migration should be transparent. If you find any data compatibility bug, please create a ticket.

Usage

Storage

RxObservableDiskCache uses RxPaper internally, so it's recommended to go to its README for reference on what Values are serializable, and what other behaviours are expected. RxObservableDiskCache is not opinionanted about the RxPaperBook you pass onto it, so feel free to use it externally to read, modify, or purge any data outside the RxObservableDiskCache scope.

Policy

Behind the scenes Policy objects are stored and retrieved separately from Values to avoid unnecessary deserialization. They're checked before the Value is retrieved to see if it has to be deleted instead. Policy objects are recommended to be kept as small as possible.

Three simple Policy classes are included with RxObservableDiskCache: TimePolicy, VersionPolicy, and TimeAndVersionPolicy. You can still use any other class as Policy.

Error handling

Any storage errors are: logged with a "cache miss" message, the current key and value get deleted, and the error is forwarded.

Any errors on the operation are forwarded too, like with any Observable.

Expect 0 results for cache and operation failures, 1 result when the cache is not found or valid and the operation succeeds, 1 result when the cache is found and valid but the operation fails, and 2 results when both the cache and the operation succeed.

There is a full test suite with examples on the sample project.

Configuration

The configuration parameters are:

  • The Single or single value Observable operation to be wrapped.
  • A key string under which the Value will be stored.
  • The RxPaperBook database where the Value and Policy will be stored.
  • A creation and validation functions for the Policy.

Static single use

RxObservableDiskCache.transform() are a set of methods you can call with any observable and configuration parameters that will return the transformed Observable.

RxObservableDiskCache.
  <UserProfile, TimeAndVersionPolicy> transform(

userRequest(),

"user_profile",

RxPaperBook.with("my_app_cache"),

TimeAndVersionPolicy.<UserProfile>create(BuildConfig.VERSION_CODE),

TimeAndVersionPolicy.validate(BuildConfig.VERSION_CODE))
  .subscribe(/* Do something withe the data */);

Instance

RxObservableDiskCache.create() creates an instance of RxObservableDiskCache for the same book, Value and Policy that can be reused for different Singles or single value Observables.

RxObservableDiskCache<UserProfile, TimeAndVersionPolicy> myCache =
  RxObservableDiskCache.create(

RxPaperBook.with("my_app_cache"),

TimeAndVersionPolicy.<UserProfile>create(BuildConfig.VERSION_CODE),

TimeAndVersionPolicy.validate(BuildConfig.VERSION_CODE));
  myCache.transform(userRequest(), "user_profile").subscribe(/* Do something withe the data */);
  myCache.transform(userRequest("54663"), "friend_54663_profile").subscribe(/* Do something withe the data */);

Distribution

Add as a dependency to your build.gradle

repositories {

  ...
  maven {
 url "https://jitpack.io" 
}

  ... 
}
  dependencies {

  ...
  compile 'com.github.pakoito:RxObservableDiskCache:2.0.0'
  ... 
}

or to your pom.xml

<repositories>
  <repository>

<id>jitpack.io</id>

<url>https://jitpack.io</url>
  </repository> </repositories>  <dependency>
  <groupId>com.github.pakoito</groupId>
  <artifactId>RxObservableDiskCache</artifactId>
  <version>2.0.0</version> </dependency>

FAQ

How fast is it? Isn't there an overhead to be always getting old values?

As fast as the underlying Paper library. Policy is used to reduce deserialization overhead when it's not required, so Values are only fetched when they're surely required and validated. Kryo is binary serialization faster than Jackson and Gson.

How do I deal with model updates?

Same way you do on SQLite: you drop the data or code defensively. The storage is schemaless, so no update scripts are required. The data is deserialized under the same premises as Paper/ Kryo, so their documentation is the best reference. The usage of Policy was introduced to automate the process, but you're free to ignore it and operate directly on the RxPaperBook you pass to the transformation.

Why isn't it an Observable transformer instead?

Because it transforms from Single to Observable, and I wanted to keep the transformation explicit.

I want to store an Observable that returns more than one result

Although it doesn't make much sense to me to duplicate every value on an Observable operation, you can do it like this:

myNotSingleObservable.flatMap(

 value ->

RxObservableDiskCache.transform(

 Single.just(value), /* rest of parameters */))

If I cancel an operation it throws a Single or Completable incomplete exception

Database operations are not meant to be cancellable, and shouldn't be applied directly to UI precisely to avoid leaks. Apply them to a PublishSubject instead, and bind that subject directly to the view making sure that you unsubscribe() it when required.

Contribution

PRs and suggestions for new features welcome.

For any error report please send an issue with a full stack trace and reproduction steps.

License

Copyright (c) pakoito 2016

The Apache Software License, Version 2.0

See LICENSE.md

Resources

Helium is a DSL for REST API specifications and also a Java API for processing descriptions written in this language. The main goal of this project is to create a single source of truth about some REST API. Taking a spec as an input, Helium generates a lot of useful staff that can be used to rapidly develop REST clients.

Goro performs asynchronous operations in a queue. You may ask Goro to perform some task with schedule method invocation.

Android Lollipop Palette is now easy to use with Glide.

This Gradle plugin adds a new task to print out the dex method count of your Android projects without having to install separate tools.

A Safari extension that adds view source links for the Android SDK.

A Chrome extension that adds an 'ad' omnibox command and view source links for the Android SDK.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes