Mercurial Hosting > luan
view examples/blog/src/lib/Db.luan @ 1250:e55a0c3696fb
webserver checks for file before luan
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Mon, 23 Jul 2018 17:23:48 -0600 |
parents | 4416b9cbebf9 |
children | 709f7498a363 |
line wrap: on
line source
local Lucene = require "luan:lucene/Lucene.luan" local Io = require "luan:Io.luan" local Db = {} function Db.new(lucene_dir) local dir = Io.uri(lucene_dir).to_string() local db = Lucene.index( dir, Lucene.type.english, {"subject","content"} ) -- 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") return Db