Mercurial Hosting > luan
view blog/src/lib/Db_mod.luan @ 618:5e495e4e560b
add lucene indexed_only_fields
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 01 Jan 2016 01:24:10 -0700 |
parents | 50540f0813e2 |
children | ca169567ce07 |
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, 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