view examples/blog/src/lib/Db.luan @ 1369:709f7498a363

change Lucene.index() and add Lucene.recover()
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 19 Jun 2019 00:26:10 -0600
parents 4416b9cbebf9
children bc40bc9aab3a
line wrap: on
line source

local Lucene = require "luan:lucene/Lucene.luan"
local Io = require "luan:Io.luan"


local Db = {}

function Db.new(lucene_dir)
	local dir = Io.uri(lucene_dir)
	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

Db.db = Db.new("site:/private/local/lucene")

return Db