Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/vinascript/html/wp-includes/functions.php on line 6114
Lấy danh sách các bản ghi sắp xếp ngẫu nhiên trong MongoDB - VinaScript

Latest Post

Triển khai dự án PHP, Mysql với Nginx trên Docker Tìm hiểu về HTML – Ưu điểm, nhược điểm và cách hoạt động của HTML

Để lấy danh sách 10 bản ghi trong MongoDB và sắp xếp chúng theo thứ tự ngẫu nhiên, chúng ta có thể sử dụng câu lệnh mongo shell dưới đây:

db.posts.aggregate([
    { $sample : { size: 10 } }
])

Nếu các bạn muốn filter (where) theo một điệu kiện nhất định. VD: column site = ‘vinasupport.com‘ thì dùng lệnh mongo shell sau đây.

db.posts.aggregate([
    { $match : { site: 'vinasupport.com' } },
    { $sample : { size: 10 } }
])

Nếu bạn đang làm việc với PHP Laravel và sử dụng MongoDB, dưới đây là một đoạn mã mà bạn có thể tham khảo:

Post::raw(
    function($collection)
    {
        return $collection->aggregate([
            // Filter by site
            ['$match' => ['site' => 'vinasupport.com'],
            ['$sample' => ['size' => 10]]
        ]);
    }
);

Để lại một bình luận

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *