3 Repos
Knowledge graphs stored in SQLite databases for fast queries and graph traversal.
Distinct from Knowledge Graphs: Distinct from Knowledge Graphs: focuses on SQLite as the storage backend rather than general graph database technologies.
Explore 3 awesome GitHub repositories matching data & databases · SQLite-Backed. Refine with filters or upvote what's useful.
Org-roam is an Emacs-based note-taking system that builds a bidirectional network of plain-text notes, functioning as a personal knowledge base manager. It maintains both forward and backlink references in a SQLite database, automatically updated on file save, and uses persistent unique identifiers for notes instead of file paths to enable stable links across renames and moves. The system integrates directly with Emacs through custom interactive commands and hooks that access the database and buffer state, and it generates static graphs of note interconnections using Graphviz to reveal relati
Stores note metadata and link relationships in a SQLite database for fast queries and graph traversal.
This project is a self-hosted system for discovering, browsing, and receiving personalized recommendations from academic papers on arXiv. It combines an arXiv API client that downloads paper metadata and PDFs with a TF-IDF document similarity engine and an SVM-based recommendation system that trains a classifier per user based on their preferences. The system provides a web interface for browsing, searching, and filtering recent arXiv submissions, alongside personalized paper recommendations generated from individual user signals. It also includes a Twitter mention tracker that periodically p
Persists paper metadata, user preferences, and computed features in a local SQLite database for offline querying.
Simple Graph ist eine leichtgewichtige Graphdatenbank-Engine, die SQLite zur Persistierung von Knoten und Kanten verwendet. Sie fungiert als relationale Graph-Engine, indem sie Graphstrukturen auf Standard-Datenbanktabellen abbildet, was die Speicherung sowohl strukturierter Daten als auch flexibler, schemaloser Informationen durch JSON-Dokument-Einbettung ermöglicht. Das System bietet ein Dienstprogramm zur Durchführung komplexer Graph-Traversierungen und Pfadfindungen durch die Nutzung rekursiver Common Table Expressions (CTEs). Dieser Ansatz ermöglicht die Erkundung tiefer Verbindungen und Sequenzen verbundener Knoten innerhalb des gespeicherten Datennetzwerks. Das Projekt unterstützt Standard-Datenverwaltungsoperationen, einschließlich des Erstellens, Aktualisierens und Löschens von Graph-Datensätzen. Alle Interaktionen werden durch die Ausführung vorbereiteter Statements (Prepared Statements) abgewickelt, um eine konsistente und sichere Datenmanipulation innerhalb der zugrunde liegenden relationalen Speicherung zu gewährleisten.
Functions as a lightweight graph data store that uses SQLite to persist nodes and edges.