Skip to content

Instantly share code, notes, and snippets.

View daz10000's full-sized avatar

daz10000

View GitHub Profile
@daz10000
daz10000 / duckdb_bench.fsx
Created May 17, 2024 06:32
Make a synthetic parquet file, query using python and dotnet wrappers for duckdb
#r "nuget:DuckDB.NET.Data.Full"
open DuckDB.NET.Data
open System
open System.IO
let keys = File.ReadAllLines("keys.txt")
let getGeneActualMutations (path:string) (key:string) =
use connection = new DuckDBConnection("DataSource=:memory:")
connection.Open()