mirror of
https://github.com/qwertyforce/scenery.git
synced 2025-05-30 19:22:29 +00:00
18 lines
311 B
Plaintext
18 lines
311 B
Plaintext
import db_ops from './helpers/db_ops'
|
|
|
|
async function test() {
|
|
console.time("123")
|
|
const x = await db_ops.image_ops.get_images_with_similar_tags(1)
|
|
console.timeEnd("123")
|
|
console.log(x)
|
|
// console.log(JSON.stringify(x))
|
|
}
|
|
async function run(){
|
|
await test()
|
|
process.exit()
|
|
}
|
|
run()
|
|
|
|
|
|
|