Mercurial Hosting > luan
annotate examples/blog/src/lib/Db.luan @ 1392:002152af497a
hosted postgres
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 06 Sep 2019 00:19:47 -0600 |
parents | 94f48cc76de8 |
children | cc0dbca576dc |
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 logger.info("postgres_spec="..postgres_spec) | |
12 if postgres_spec ~= nil then | |
13 function postgres_spec.completer(doc) | |
14 return doc | |
15 end | |
1387
bc40bc9aab3a
start postgres backup
Franklin Schmidt <fschmidt@gmail.com>
parents:
1369
diff
changeset
|
16 end |
bc40bc9aab3a
start postgres backup
Franklin Schmidt <fschmidt@gmail.com>
parents:
1369
diff
changeset
|
17 |
1224 | 18 function Db.new(lucene_dir) |
1369
709f7498a363
change Lucene.index() and add Lucene.recover()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1224
diff
changeset
|
19 local dir = Io.uri(lucene_dir) |
1392 | 20 local db = Lucene.index( dir, Lucene.type.english, {"subject","content"}, postgres_spec ) |
596 | 21 |
22 -- this is how you index a field | |
23 -- db.indexed_fields.post_date = Lucene.type.long | |
24 | |
25 return db | |
26 end | |
27 | |
1224 | 28 Db.db = Db.new("site:/private/local/lucene") |
1220 | 29 |
1388
2024d23ddd64
add restore_from_postgres
Franklin Schmidt <fschmidt@gmail.com>
parents:
1387
diff
changeset
|
30 --Db.db.restore_from_postgres() |
1391 | 31 Db.db.check() |
1220 | 32 return Db |