mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 12:20:34 +00:00

* feat: log store * fix: full text search match query * perf: mongo schema import, Avoid duplicate import
35 lines
776 B
TypeScript
35 lines
776 B
TypeScript
import { connectionMongo, getMongoModel, type Model } from '../../mongo';
|
|
const { Schema, model, models } = connectionMongo;
|
|
import { RawTextBufferSchemaType } from './type';
|
|
|
|
export const collectionName = 'buffer_rawtexts';
|
|
|
|
const RawTextBufferSchema = new Schema({
|
|
sourceId: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
rawText: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
createTime: {
|
|
type: Date,
|
|
default: () => new Date()
|
|
},
|
|
metadata: Object
|
|
});
|
|
|
|
try {
|
|
RawTextBufferSchema.index({ sourceId: 1 });
|
|
// 20 minutes
|
|
RawTextBufferSchema.index({ createTime: 1 }, { expireAfterSeconds: 20 * 60 });
|
|
} catch (error) {
|
|
console.log(error);
|
|
}
|
|
|
|
export const MongoRawTextBuffer = getMongoModel<RawTextBufferSchemaType>(
|
|
collectionName,
|
|
RawTextBufferSchema
|
|
);
|