Mercurial Hosting > luan
view blog/src/lib/Db_mod.luan @ 598:e930f92d0f61
add blog test
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 16 Sep 2015 14:32:52 -0600 |
parents | 6bb0c83116e9 |
children | 50540f0813e2 |
line wrap: on
line source
local Lucene = require "luan:lucene/Lucene" local Io = require "luan:Io" local M = {} M.lucene_dir = "site:/private/local/lucene" function M.new_db() local dir = Io.uri(M.lucene_dir).to_string() local db = Lucene.index(dir) -- this is how you index a field -- db.indexed_fields.post_date = Lucene.type.long return db end return M