[llvm] [CAS] Add LLVMCAS library with InMemoryCAS implementation (PR #114096)
Shubham Sandeep Rastogi via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 29 15:03:21 PDT 2024
================
@@ -0,0 +1,120 @@
+# Content Addressable Storage
+
+## Introduction to CAS
+
+Content Addressable Storage, or `CAS`, is a storage system where it assigns
+unique addresses to the data stored. It is very useful for data deduplicaton
+and creating unique identifiers.
+
+Unlikely other kind of storage system like file system, CAS is immutable. It
----------------
rastogishubham wrote:
```suggestion
Unlike other kind of storage system like file system, CAS is immutable. It
```
https://github.com/llvm/llvm-project/pull/114096
More information about the llvm-commits
mailing list