Mercurial Hosting > luan
view examples/blog/src/lib/Db_mod.luan @ 801:6a21393191c1
start version 0.22
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 07 Sep 2016 20:18:10 -0600 |
parents | c38f6619feb9 |
children | bae2d0c2576c |
line wrap: on
line source
local Lucene = require "luan:lucene/Lucene.luan" local Io = require "luan:Io.luan" 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, Lucene.type.english, {"subject","content"} ) -- this is how you index a field -- db.indexed_fields.post_date = Lucene.type.long return db end return M