123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- // SiYuan - Refactor your thinking
- // Copyright (c) 2020-present, b3log.org
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU Affero General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU Affero General Public License for more details.
- //
- // You should have received a copy of the GNU Affero General Public License
- // along with this program. If not, see <https://www.gnu.org/licenses/>.
- package cache
- import (
- "strings"
- "github.com/88250/lute/editor"
- "github.com/dgraph-io/ristretto"
- )
- var docIALCache, _ = ristretto.NewCache(&ristretto.Config{
- NumCounters: 102400,
- MaxCost: 10240,
- BufferItems: 64,
- })
- func PutDocIAL(p string, ial map[string]string) {
- docIALCache.Set(p, ial, 1)
- }
- func GetDocIAL(p string) (ret map[string]string) {
- ial, _ := docIALCache.Get(p)
- if nil == ial {
- return
- }
- ret = map[string]string{}
- for k, v := range ial.(map[string]string) {
- ret[k] = strings.ReplaceAll(v, editor.IALValEscNewLine, "\n")
- }
- return
- }
- func RemoveDocIAL(p string) {
- docIALCache.Del(p)
- }
- func ClearDocsIAL() {
- docIALCache.Clear()
- }
- var blockIALCache, _ = ristretto.NewCache(&ristretto.Config{
- NumCounters: 102400,
- MaxCost: 10240,
- BufferItems: 64,
- })
- func PutBlockIAL(id string, ial map[string]string) {
- blockIALCache.Set(id, ial, 1)
- }
- func GetBlockIAL(id string) (ret map[string]string) {
- ial, _ := blockIALCache.Get(id)
- if nil == ial {
- return
- }
- return ial.(map[string]string)
- }
- func RemoveBlockIAL(id string) {
- blockIALCache.Del(id)
- }
- func ClearBlocksIAL() {
- blockIALCache.Clear()
- }
|