Mercurial Hosting > luan
view blog/src/lib/Db_mod.luan @ 759:ae612dfc57cb 0.21
better handling of longs in rpc and json
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 19 Jul 2016 09:09:41 -0600 (2016-07-19) |
parents | ca169567ce07 |
children |
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