@haybarn/ext-cache_prewarm-h1-5-3 202604.20.185602

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +45 -0
  2. package/package.json +40 -0
package/README.md ADDED
@@ -0,0 +1,45 @@
1
+ <p align="center">
2
+ <img src="https://raw.githubusercontent.com/Query-farm-haybarn/.github/haybarn/profile/assets/haybarn-icon.png" alt="Haybarn" width="120" height="120">
3
+ </p>
4
+
5
+ # Haybarn extension: `cache_prewarm`
6
+
7
+ Prewarm data blocks into DuckDB's buffer pool or OS page cache for faster queries
8
+
9
+ > **Source:** [https://github.com/dentiny/duckdb-cache-prewarm](https://github.com/dentiny/duckdb-cache-prewarm)
10
+ > **Catalog:** [Haybarn community extensions](https://github.com/Query-farm-haybarn/haybarn-community-extensions)
11
+
12
+ ## Install
13
+
14
+ ```sh
15
+ npm install @haybarn/ext-cache_prewarm-h1-5-3
16
+ # or use the exact version:
17
+ npm install @haybarn/ext-cache_prewarm-h1-5-3@202604.20.185602
18
+ ```
19
+
20
+ npm picks the matching platform binary from the leaves below via its `os` / `cpu` / `libc` fields. No postinstall scripts, no network calls after `npm install`.
21
+
22
+ ## Available platforms (this version)
23
+
24
+ Installed automatically by `npm install @haybarn/ext-cache_prewarm-h1-5-3` (npm picks the one matching your `os`/`cpu`/`libc`):
25
+
26
+ - `@haybarn/ext-cache_prewarm-h1-5-3-linux-arm64`
27
+ - `@haybarn/ext-cache_prewarm-h1-5-3-linux-x64`
28
+ - `@haybarn/ext-cache_prewarm-h1-5-3-darwin-x64`
29
+ - `@haybarn/ext-cache_prewarm-h1-5-3-darwin-arm64`
30
+
31
+ ## Use it
32
+
33
+ Once installed, the `.duckdb_extension` binary lands in your project's `node_modules/` tree under the matching leaf. The [Haybarn](https://github.com/Query-farm-haybarn/haybarn) engine auto-discovers it at startup; from a Haybarn SQL session:
34
+
35
+ ```sql
36
+ LOAD cache_prewarm;
37
+ ```
38
+
39
+ ## License
40
+
41
+ The `cache_prewarm` extension is distributed under **MIT**. The Haybarn engine itself is MIT-licensed.
42
+
43
+ ## Trademark
44
+
45
+ Haybarn is an independent derived distribution of DuckDB published by [Query Farm LLC](https://query.farm). Not affiliated with or endorsed by the DuckDB Foundation. DuckDB is a trademark of the DuckDB Foundation.
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@haybarn/ext-cache_prewarm-h1-5-3",
3
+ "version": "202604.20.185602",
4
+ "description": "Prewarm data blocks into DuckDB's buffer pool or OS page cache for faster queries",
5
+ "homepage": "https://github.com/dentiny/duckdb-cache-prewarm",
6
+ "bugs": {
7
+ "url": "https://github.com/dentiny/duckdb-cache-prewarm/issues"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/Query-farm-haybarn/haybarn-community-extensions.git"
12
+ },
13
+ "license": "MIT",
14
+ "keywords": [
15
+ "haybarn",
16
+ "duckdb",
17
+ "extension",
18
+ "cache_prewarm"
19
+ ],
20
+ "optionalDependencies": {
21
+ "@haybarn/ext-cache_prewarm-h1-5-3-linux-arm64": "202604.20.185602",
22
+ "@haybarn/ext-cache_prewarm-h1-5-3-linux-x64": "202604.20.185602",
23
+ "@haybarn/ext-cache_prewarm-h1-5-3-darwin-x64": "202604.20.185602",
24
+ "@haybarn/ext-cache_prewarm-h1-5-3-darwin-arm64": "202604.20.185602"
25
+ },
26
+ "haybarn": {
27
+ "built_at": "2026-05-28T17:48:27Z",
28
+ "ext_commit": "1047d2a4763615299959fe4b92fb2777b9675e61",
29
+ "ext_version_label": "",
30
+ "extension": "cache_prewarm",
31
+ "haybarn_version": "1.5.3",
32
+ "sha256": "see-leaf-packages-for-per-platform-sha256"
33
+ },
34
+ "files": [
35
+ "README.md"
36
+ ],
37
+ "publishConfig": {
38
+ "access": "public"
39
+ }
40
+ }