2
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
|
3 local new_error = Luan.new_error or error()
|
53
|
4 local ipairs = Luan.ipairs or error()
|
2
|
5 local Lucene = require "luan:lucene/Lucene.luan"
|
|
6 local Io = require "luan:Io.luan"
|
|
7 local uri = Io.uri or error()
|
|
8 local Http = require "luan:http/Http.luan"
|
|
9 local Thread = require "luan:Thread.luan"
|
|
10 local Time = require "luan:Time.luan"
|
|
11 local Logging = require "luan:logging/Logging.luan"
|
|
12 local logger = Logging.logger "Db"
|
|
13
|
|
14
|
|
15 local dir = uri("site:/private/local/lucene")
|
|
16
|
|
17 local Db = Lucene.index( dir, {
|
|
18 log_dir = uri("site:/private/local/lucene_log")
|
|
19 name = "lucene"
|
|
20 version = 1
|
|
21 } )
|
|
22
|
|
23 Db.indexed_fields.user_email = Lucene.type.lowercase
|
|
24
|
4
|
25 Db.indexed_fields.chat_user_ids = Lucene.type.long
|
|
26 Db.indexed_fields.chat_updated = Lucene.type.long
|
|
27
|
10
|
28 Db.indexed_fields.post_chat_id = Lucene.type.long
|
53
|
29 Db.indexed_fields.post_date = Lucene.type.long
|
|
30
|
|
31 Db.indexed_fields.chatuser_id = Lucene.type.string
|
10
|
32
|
2
|
33 function Db.not_in_transaction()
|
|
34 logger.error(new_error("not in transaction"))
|
|
35 end
|
|
36
|
|
37 Db.update{
|
53
|
38 [1] = function()
|
|
39 local docs = Db.search("type:post",1,1000000)
|
|
40 for _, doc in ipairs(docs) do
|
|
41 doc.post_date = doc.post_date or doc.date
|
|
42 Db.save(doc)
|
|
43 end
|
|
44 end
|
2
|
45 }
|
|
46
|
|
47 if Http.is_serving then
|
|
48 Thread.schedule( Db.check, { delay=0, repeating_delay=Time.period{hours=1} } )
|
|
49 end
|
|
50
|
|
51 return Db
|