Mercurial Hosting > luan
annotate examples/blog/src/lib/Db.luan @ 1393:cc0dbca576dc
better logging
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 06 Sep 2019 05:09:56 -0600 |
parents | 002152af497a |
children | 9dfff82dfc59 |
rev | line source |
---|---|
693
ca169567ce07
module URIs must now include ".luan"
Franklin Schmidt <fschmidt@gmail.com>
parents:
599
diff
changeset
|
1 local Lucene = require "luan:lucene/Lucene.luan" |
ca169567ce07
module URIs must now include ".luan"
Franklin Schmidt <fschmidt@gmail.com>
parents:
599
diff
changeset
|
2 local Io = require "luan:Io.luan" |
1392 | 3 local Hosting = require "luan:host/Hosting.luan" |
4 local Logging = require "luan:logging/Logging.luan" | |
5 local logger = Logging.logger "Db" | |
596 | 6 |
7 | |
1220 | 8 local Db = {} |
596 | 9 |
1392 | 10 local postgres_spec = Hosting.postgres_spec and Hosting.postgres_spec() |
11 if postgres_spec ~= nil then | |
12 function postgres_spec.completer(doc) | |
13 return doc | |
14 end | |
1387
bc40bc9aab3a
start postgres backup
Franklin Schmidt <fschmidt@gmail.com>
parents:
1369
diff
changeset
|
15 end |
bc40bc9aab3a
start postgres backup
Franklin Schmidt <fschmidt@gmail.com>
parents:
1369
diff
changeset
|
16 |
1224 | 17 function Db.new(lucene_dir) |
1369
709f7498a363
change Lucene.index() and add Lucene.recover()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1224
diff
changeset
|
18 local dir = Io.uri(lucene_dir) |
1392 | 19 local db = Lucene.index( dir, Lucene.type.english, {"subject","content"}, postgres_spec ) |
596 | 20 |
21 -- this is how you index a field | |
22 -- db.indexed_fields.post_date = Lucene.type.long | |
23 | |
24 return db | |
25 end | |
26 | |
1224 | 27 Db.db = Db.new("site:/private/local/lucene") |
1220 | 28 |
1388
2024d23ddd64
add restore_from_postgres
Franklin Schmidt <fschmidt@gmail.com>
parents:
1387
diff
changeset
|
29 --Db.db.restore_from_postgres() |
1391 | 30 Db.db.check() |
1220 | 31 return Db |