A Flutter Plugin for Fetching Firestore Documents with Read from Cache First Then Server

Firestore Cache

A Flutter plugin for fetching Firestore documents with read from cache first then server.

This plugin is mainly designed for applications using the DocumentReference.get() and Query.get() (Query.getDocuments() for cloud_firestore versions prior to 0.14.0) methods in the cloud_firestore plugin, and is implemented with read from cache first then server.

Getting Started

WARNING cloud_firestore 0.14.0 introduced a lot of breaking changes, firestore_cache 0.2.0 has been update to work with these latest changes. Please use firestore_cache 0.1.1 for cloud_firestore versions prior to 0.14.0.

Add this to your package’s pubspec.yaml file:

dependencies:
  firestore_cache: ^0.2.0

Usage

Before using the plugin, you will need to create a document on Firestore and create a timestamp field in that document. See the screenshot below for an example:

Firestore Screenshot

PLEASE NOTE This plugin does not compare the documents in the cache and the ones in the server to determine if it should fetch data from the server. Instead, it relies on the timestamp field in the document to make that decision. And so your application should implement the logic to update this field if you want to read new data from the server instead of reading it from the cache.

You should also create different timestamp fields for different collections or documents that you are reading.

import 'package:firestore_cache/firestore_cache.dart';
import 'package:cloud_firestore/cloud_firestore.dart';

// This should be the path of the document that you created
final DocumentReference cacheDocRef = Firestore.instance.doc('status/status');

// This should be the timestamp field in that document
final String cacheField = 'updatedAt';

final Query query = Firestore.instance.collection('collection');
final QuerySnapshot snapshot = await FirestoreCache.getDocuments(
    query: query,
    cacheDocRef: cacheDocRef,
    firestoreCacheField: cacheField,
);

Documentation

The documentation of firestore_cache is available here.

Download Details:

Author: zeshuaro

Demo: https://pub.dev/packages/firestore_cache

Source Code: https://github.com/zeshuaro/firestore_cache

#flutter #dart #mobile-apps

A Flutter Plugin for Fetching Firestore Documents with Read from Cache First Then Server
8.05 GEEK