mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00
7 lines
285 B
TypeScript
7 lines
285 B
TypeScript
import { ReadPreference } from './index';
|
|
|
|
export const readFromSecondary = {
|
|
readPreference: ReadPreference.SECONDARY_PREFERRED, // primary | primaryPreferred | secondary | secondaryPreferred | nearest
|
|
readConcern: 'local' as any // local | majority | linearizable | available
|
|
};
|