Book Image

Dart By Example

By : David Mitchell
Book Image

Dart By Example

By: David Mitchell

Overview of this book

Table of Contents (17 chapters)
Dart By Example
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Caching


The serving of content in the first iteration of the web server was rather inefficient—I hope you noticed! On every GET request, the blog source file is read from the disk and is processed. To gain some efficiency, we can use a map added to the Blog class as a field. Let's take a look at the following code snippet for more information:

    BlogPost getBlogPost(int index) {
    if (!_cache.containsKey(index)) {
      _cache[index] = new BlogPost(postPaths[index], index);
    }
    return _cache[index];
  }

The map object uses the blog index as a key and the resultant blog post as the value. This cache is kept in the memory so that if the blog server application is stopped and restarted, new requests will not initially come from the cache.

Note

Caching of content in web applications is quite an art. For example, a cache could be put in place at the request level for both entire pages and images. The underlying operating system will also cache files in memory, making operations much faster...