Mercurial Hosting > luan
annotate 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 |
rev | line source |
---|---|
596 | 1 local Lucene = require "luan:lucene/Lucene" |
2 local Io = require "luan:Io" | |
3 | |
4 | |
5 local M = {} | |
6 | |
7 M.lucene_dir = "site:/private/local/lucene" | |
8 | |
9 function M.new_db() | |
10 local dir = Io.uri(M.lucene_dir).to_string() | |
11 local db = Lucene.index(dir) | |
12 | |
13 -- this is how you index a field | |
14 -- db.indexed_fields.post_date = Lucene.type.long | |
15 | |
16 return db | |
17 end | |
18 | |
19 return M |