SQL-like Queries in FSRS Plugin for Obsidian
The FSRS Plugin for Obsidian has introduced SQL-like queries to enhance the functionality of spaced repetition. This allows users to filter and sort their notes more effectively, especially when dealing with large volumes of data. The implementation utilizes Rust and WASM for performance, enabling quick retrieval and display of information.
- ▪The plugin turns markdown blocks into live tables that update with each review.
- ▪Users can execute queries to select, filter, and sort their notes based on various criteria.
- ▪The implementation avoids using SQLite, opting instead for a lightweight solution that operates on cached data.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3940739) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Evgene Posted on May 30 SQL-like Queries in FSRS Plugin for Obsidian #productivity #showdev #sql #rust FSRS Plugin for Obsidian (3 Part Series) 1 FSRS for Obsidian: remember what matters 2 FSRS Plugin for Obsidian: Rust/WASM Architecture and Performance 3 SQL-like Queries in FSRS Plugin for Obsidian SQL-like Queries in FSRS Plugin for Obsidian Spaced repetition in Obsidian usually works as "show all cards with due earlier than today." That's enough for simple cases, but once you…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).