Bloom Filter ฉบับผู้ใช้งาน

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 ธ.ค. 2024

ความคิดเห็น •

  • @BBConfig
    @BBConfig  2 หลายเดือนก่อน +2

    Data ที่ผมใช้มากจาก Kaggle : Goodreads Book Reviews Data Set - www.kaggle.com/datasets/pypiahmad/goodreads-book-reviews1?select=goodreads_books.json

  • @dream07312
    @dream07312 หลายเดือนก่อน +1

    Thx a lot nice video krub, i have a question, How do we know if the bloomfilter space initially set is no longer enough?

    • @BBConfig
      @BBConfig  หลายเดือนก่อน +1

      Thanks very much krub. Most of the time, bloom-filter is used in system that can (more or less) control the expect entries of data krub. In use case of my project, we limit maximum data entries in a chunk of data (1 chunk for one bloom instance). So we let library calculate the size of bloom e.g newBloom(maxNumEntries, false-positive-rate) . So we don't really monitor if false-positive rate is increase or not, we just control the max-entries inserted to the bloom instead.

    • @dream07312
      @dream07312 หลายเดือนก่อน

      @@BBConfig Thank for your answer krub 🙏