Mercurial Hosting > luan
view examples/blog/src/lib/Db.luan @ 1389:eb8b35dccd99
cleanup and stringify change
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 03 Sep 2019 22:54:31 -0600 |
parents | 2024d23ddd64 |
children | 94f48cc76de8 |
line wrap: on
line source
local Lucene = require "luan:lucene/Lucene.luan" local Io = require "luan:Io.luan" local Db = {} local function completer(doc) return doc end function Db.new(lucene_dir) local dir = Io.uri(lucene_dir) local db = Lucene.index( dir, Lucene.type.english, {"subject","content"}, completer ) -- this is how you index a field -- db.indexed_fields.post_date = Lucene.type.long return db end Db.db = Db.new("site:/private/local/lucene") --Db.db.restore_from_postgres() return Db