-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (53 loc) · 3.38 KB
/
index.html
File metadata and controls
55 lines (53 loc) · 3.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>VFSLite - Lightweight virtual file system.</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="VFSLite is a light-weight virtual file system library.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="assets/style.css">
<link rel="icon" type="image/png" href="assets/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="assets/favicon.svg" />
<link rel="shortcut icon" href="assets/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="assets/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="VFSLite" />
<link rel="manifest" href="assets/site.webmanifest" />
</head>
<div class="wrap">
<div class="header">
<h1><img src="assets/vfsl_logo.png" width="168"></h1>
</div>
<div class="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="documentation.html">Documentation</a></li>
<li><a href="https://github.com/vfslite/vfslite" target="_blank">Github</a></li>
</ul>
</div>
<div class="container">
<h1>Small, compact and fast!</h1><br/>
<p>VFSLite is a lightweight, single file virtual file system. VFSLite can be accessed via Go or shared C library.</p><br/>
<h2>Features</h2>
<hr/>
<ul>
<li><strong>Block-Based Filesystem</strong> - VFSLite is a block-based filesystem. This means that files are stored in user-defined fixed-size blocks.</li>
<li><strong>Single File</strong> - VFSLite is a single file, the entire filesystem is stored in a single file.</li>
<li><strong>Metadata Management</strong> - Custom metadeta can be stored with each file. This allows for easy storage and retrieval of file metadata.</li>
<li><strong>Go and C API</strong> - VFSLite can be accessed via Go or shared C library.</li>
<li><strong>Block Locking</strong> - VFSLite supports granular block RW locking.</li>
<li><strong>Concurrent Safe</strong> - VFSLite is designed to be concurrent safe. Multiple goroutines can read and write to the filesystem simultaneously.</li>
<li><strong>Hierarchical Structure</strong> - VFSLite supports a hierarchical structure. This means that you can create directories and subdirectories to organize your files.</li>
<li><strong>Dynamic Disk Expansion</strong> - VFSLite supports automatic dynamic disk expansion.</li>
<li><strong>Stream I/O</strong> - VFSLite supports stream I/O. This means that you can read and write files in a streaming fashion.</li>
</ul>
</div>
<div class="footer">
<p>© 2025 VFSLite, all rights reserved.</p>
<a href="https://discord.gg/J7z7nNMBRX" target="_blank"><img alt="Discord" src="https://img.shields.io/discord/1348106697234841712?style=flat&label=Discord&labelColor=0970da&link=https%3A%2F%2Fdiscord.gg%2FJ7z7nNMBRX">
</a>
</div>
</div>
</html>