Mercurial Hosting > luan
view examples/blog/src/lib/Db_mod.luan @ 1118:e4710ddfd287
start luan/lib/rpc
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 06 Aug 2017 20:11:11 -0600 |
parents | bae2d0c2576c |
children |
line wrap: on
line source
local Lucene = require "luan:lucene/Lucene.luan" local Io = require "luan:Io.luan" local Db_mod = {} Db_mod.lucene_dir = "site:/private/local/lucene" function Db_mod.new_db() local dir = Io.uri(Db_mod.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 return Db_mod