source: binary-improvements2/WebServer/src/FileCache/DirectAccess.cs@ 402

Last change on this file since 402 was 402, checked in by alloc, 22 months ago
  • Major refactoring
  • Using Utf8Json for (de)serialization
  • Moving APIs to REST
  • Removing dependencies from WebServer and MapRenderer to ServerFixes
File size: 504 bytes
Line 
1using System;
2using System.IO;
3
4namespace Webserver.FileCache {
5 // Not caching at all, simply reading from disk on each request
6 public class DirectAccess : AbstractCache {
7 public override byte[] GetFileContent (string _filename) {
8 try {
9 return File.Exists (_filename) ? File.ReadAllBytes (_filename) : null;
10 } catch (Exception e) {
11 Log.Out ($"Error in DirectAccess.GetFileContent: {e}");
12 }
13
14 return null;
15 }
16
17 public override (int, int) Invalidate () {
18 return (0, 0);
19 }
20 }
21}
Note: See TracBrowser for help on using the repository browser.