This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- @see https://briandouglas.ie/sqlite-defaults/ | |
-- Set the journal mode to Write-Ahead Logging for concurrency | |
PRAGMA journal_mode = WAL; | |
-- Set synchronous mode to NORMAL for performance and data safety balance | |
PRAGMA synchronous = NORMAL; | |
-- Set busy timeout to 5 seconds to avoid "database is locked" errors | |
PRAGMA busy_timeout = 5000; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#lang racket | |
(module constants racket | |
(provide e pi) | |
(define e 2.1718281828) | |
(define pi (* 355/113 1.0))) | |
(require 'constants) | |
pi | |
; (set! pi (+ pi 1)) |