[llvm] [CAS] Add LLVMCAS library with InMemoryCAS implementation (PR #114096)

Adrian Prantl via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 7 15:24:04 PDT 2025


================
@@ -0,0 +1,121 @@
+# 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.
+
+Unlike other kinds of storage system like a file system, CAS is immutable. It
----------------
adrian-prantl wrote:

```suggestion
Unlike other kinds of storage systems like file systems, CAS is immutable. It
```

https://github.com/llvm/llvm-project/pull/114096


More information about the llvm-commits mailing list