data.go 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. // Copyright 2016 ego authors
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License"): you may
  4. // not use this file except in compliance with the License. You may obtain
  5. // a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  11. // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  12. // License for the specific language governing permissions and limitations
  13. // under the License.
  14. package core
  15. import (
  16. "sync"
  17. "github.com/go-ego/riot/types"
  18. )
  19. var (
  20. // DocInfoGroup 文档信息 [shard][id]info
  21. DocInfoGroup = make(map[int]*types.DocInfosShard)
  22. docInfosGroupRWMutex sync.RWMutex
  23. )
  24. // AddDocInfosShard add document infos shard
  25. func AddDocInfosShard(shard int) {
  26. docInfosGroupRWMutex.Lock()
  27. defer docInfosGroupRWMutex.Unlock()
  28. if _, found := DocInfoGroup[shard]; !found {
  29. DocInfoGroup[shard] = &types.DocInfosShard{
  30. DocInfos: make(map[uint64]*types.DocInfo),
  31. }
  32. }
  33. }
  34. // AddDocInfo add documents info
  35. func AddDocInfo(shard int, docId uint64, docinfo *types.DocInfo) {
  36. docInfosGroupRWMutex.Lock()
  37. defer docInfosGroupRWMutex.Unlock()
  38. if _, ok := DocInfoGroup[shard]; !ok {
  39. DocInfoGroup[shard] = &types.DocInfosShard{
  40. DocInfos: make(map[uint64]*types.DocInfo),
  41. }
  42. }
  43. DocInfoGroup[shard].DocInfos[docId] = docinfo
  44. DocInfoGroup[shard].NumDocs++
  45. }
  46. // IsDocExist doc is exist
  47. func IsDocExist(docId uint64) bool {
  48. docInfosGroupRWMutex.RLock()
  49. defer docInfosGroupRWMutex.RUnlock()
  50. for _, docInfosShard := range DocInfoGroup {
  51. _, found := docInfosShard.DocInfos[docId]
  52. if found {
  53. return true
  54. }
  55. }
  56. return false
  57. }
  58. var (
  59. // InvertedIndexGroup 反向索引表([shard][关键词]反向索引表)
  60. InvertedIndexGroup = make(map[int]*types.InvertedIndexShard)
  61. invertedIndexGroupRWMutex sync.RWMutex
  62. )
  63. // AddInvertedIndexShard add inverted index shard
  64. func AddInvertedIndexShard(shard int) {
  65. invertedIndexGroupRWMutex.Lock()
  66. defer invertedIndexGroupRWMutex.Unlock()
  67. if _, found := InvertedIndexGroup[shard]; !found {
  68. InvertedIndexGroup[shard] = &types.InvertedIndexShard{
  69. InvertedIndex: make(map[string]*types.KeywordIndices),
  70. }
  71. }
  72. }
  73. // AddKeywordIndices add keyword indices
  74. func AddKeywordIndices(shard int, keyword string, keywordIndices *types.KeywordIndices) {
  75. invertedIndexGroupRWMutex.Lock()
  76. defer invertedIndexGroupRWMutex.Unlock()
  77. if _, ok := InvertedIndexGroup[shard]; !ok {
  78. InvertedIndexGroup[shard] = &types.InvertedIndexShard{
  79. InvertedIndex: make(map[string]*types.KeywordIndices),
  80. }
  81. }
  82. InvertedIndexGroup[shard].InvertedIndex[keyword] = keywordIndices
  83. InvertedIndexGroup[shard].TotalTokenLen++
  84. }