home.social

#vectordb — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #vectordb, aggregated by home.social.

fetched live
  1. Bases de Datos y Cómputo

    Vector Databases (bases de datos vectoriales) son el pilar invisible de la IA moderna. A diferencia de las bases de datos relacionales tradicionales, permiten almacenar y buscar embeddings para encontrar similitud semántica en segundos. Es la tecnología que hace posibles los buscadores inteligentes y los sistemas RAG.

    #DataScience #AI #Databases #VectorDB #Tech #Backend #Programming

  2. Bases de Datos y Cómputo

    Vector Databases (bases de datos vectoriales) son el pilar invisible de la IA moderna. A diferencia de las bases de datos relacionales tradicionales, permiten almacenar y buscar embeddings para encontrar similitud semántica en segundos. Es la tecnología que hace posibles los buscadores inteligentes y los sistemas RAG.

    #DataScience #AI #Databases #VectorDB #Tech #Backend #Programming

  3. Bases de Datos y Cómputo

    Vector Databases (bases de datos vectoriales) son el pilar invisible de la IA moderna. A diferencia de las bases de datos relacionales tradicionales, permiten almacenar y buscar embeddings para encontrar similitud semántica en segundos. Es la tecnología que hace posibles los buscadores inteligentes y los sistemas RAG.

    #DataScience #AI #Databases #VectorDB #Tech #Backend #Programming

  4. Bases de Datos y Cómputo

    Vector Databases (bases de datos vectoriales) son el pilar invisible de la IA moderna. A diferencia de las bases de datos relacionales tradicionales, permiten almacenar y buscar embeddings para encontrar similitud semántica en segundos. Es la tecnología que hace posibles los buscadores inteligentes y los sistemas RAG.

    #DataScience #AI #Databases #VectorDB #Tech #Backend #Programming

  5. Bases de Datos y Cómputo

    Vector Databases (bases de datos vectoriales) son el pilar invisible de la IA moderna. A diferencia de las bases de datos relacionales tradicionales, permiten almacenar y buscar embeddings para encontrar similitud semántica en segundos. Es la tecnología que hace posibles los buscadores inteligentes y los sistemas RAG.

    #DataScience #AI #Databases #VectorDB #Tech #Backend #Programming

  6. 💡 Vector databases explained simply:

    Traditional DB: "Find me rows WHERE name = 'cats'"
    Vector DB: "Find me the 10 most similar things to THIS cat"

    Under the hood:
    → Text → Embedding (1536-dim float array)
    → Store in pgvector / Pinecone / Qdrant
    → Query = cosine similarity search

    For most apps: pgvector (Postgres extension) is enough. No new infra needed.

    #VectorDB #AI #RAG #LLM #GenerativeAI #FullStack #MachineLearning

  7. 💡 Vector databases explained simply:

    Traditional DB: "Find me rows WHERE name = 'cats'"
    Vector DB: "Find me the 10 most similar things to THIS cat"

    Under the hood:
    → Text → Embedding (1536-dim float array)
    → Store in pgvector / Pinecone / Qdrant
    → Query = cosine similarity search

    For most apps: pgvector (Postgres extension) is enough. No new infra needed.

    #VectorDB #AI #RAG #LLM #GenerativeAI #FullStack #MachineLearning

  8. 💡 Vector databases explained simply:

    Traditional DB: "Find me rows WHERE name = 'cats'"
    Vector DB: "Find me the 10 most similar things to THIS cat"

    Under the hood:
    → Text → Embedding (1536-dim float array)
    → Store in pgvector / Pinecone / Qdrant
    → Query = cosine similarity search

    For most apps: pgvector (Postgres extension) is enough. No new infra needed.

    #VectorDB #AI #RAG #LLM #GenerativeAI #FullStack #MachineLearning

  9. 💡 Vector databases explained simply:

    Traditional DB: "Find me rows WHERE name = 'cats'"
    Vector DB: "Find me the 10 most similar things to THIS cat"

    Under the hood:
    → Text → Embedding (1536-dim float array)
    → Store in pgvector / Pinecone / Qdrant
    → Query = cosine similarity search

    For most apps: pgvector (Postgres extension) is enough. No new infra needed.

    #VectorDB #AI #RAG #LLM #GenerativeAI #FullStack #MachineLearning

  10. 💡 Vector databases explained simply:

    Traditional DB: "Find me rows WHERE name = 'cats'"
    Vector DB: "Find me the 10 most similar things to THIS cat"

    Under the hood:
    → Text → Embedding (1536-dim float array)
    → Store in pgvector / Pinecone / Qdrant
    → Query = cosine similarity search

    For most apps: pgvector (Postgres extension) is enough. No new infra needed.

    #VectorDB #AI #RAG #LLM #GenerativeAI #FullStack #MachineLearning

  11. Escape the proprietary AI cloud tax!

    Moving your vector search from Pinecone to open-source Qdrant on Bare Metal is a massive performance & cost upgrade.

    Our SRE guide on making the switch:
    🔹 In-graph filtering > post-filtering
    🔹 INT8 cuts RAM footprint by 400%
    🔹 Direct NVMe > Network Storage

    Includes full Docker configs & Linux kernel tuning tips to squeeze every drop of IOPS.

    Read the playbook here:
    servermo.com/howto/migrate-pin

    #OpenSource #SelfHosted #Qdrant #DevOps #VectorDB

  12. Escape the proprietary AI cloud tax!

    Moving your vector search from Pinecone to open-source Qdrant on Bare Metal is a massive performance & cost upgrade.

    Our SRE guide on making the switch:
    🔹 In-graph filtering > post-filtering
    🔹 INT8 cuts RAM footprint by 400%
    🔹 Direct NVMe > Network Storage

    Includes full Docker configs & Linux kernel tuning tips to squeeze every drop of IOPS.

    Read the playbook here:
    servermo.com/howto/migrate-pin

    #OpenSource #SelfHosted #Qdrant #DevOps #VectorDB

  13. Escape the proprietary AI cloud tax!

    Moving your vector search from Pinecone to open-source Qdrant on Bare Metal is a massive performance & cost upgrade.

    Our SRE guide on making the switch:
    🔹 In-graph filtering > post-filtering
    🔹 INT8 cuts RAM footprint by 400%
    🔹 Direct NVMe > Network Storage

    Includes full Docker configs & Linux kernel tuning tips to squeeze every drop of IOPS.

    Read the playbook here:
    servermo.com/howto/migrate-pin

    #OpenSource #SelfHosted #Qdrant #DevOps #VectorDB

  14. Interessante Erklärung von Databricks zu Vektordatenbanken.
    🔑 **Kern-Einblick:** Traditionelle DBs finden exakte Treffer, Vektordatenbanken verstehen *Bedeutung* durch Embeddings – essenziell für semantische Suche & KI-Anwendungen.
    - Handhabt hochdimensionale Vektoreffizient
    - Beschleunigt Retrieval-Augmented Generation (RAG)
    - Unterstützt komplexe Ähnlichkeitssuchen

    #VectorDB #MachineLearning #KünstlicheIntelligenz #DataEngineering #Databricks

    🔗 news.google.com/rss/articles/C

  15. Have pushed 0.9.5-dev branch to codeberg of foxing ( codeberg.org/aenertia/foxing/s ) in preparation for release tagging. A LOT of features and a couple of bug-fixes now the packet/file processing engine has stabilized ; including Semantic Routing to Parsers for Metadata Extraction and in-path Binary analysis using local ORT/BERT models ; letting you get semantic search powers for free when you copy something with foxingd/fxcp #linux #filesystem #bert #vectordb #postgres #xfs #stratis #blake3 #localllm

  16. Have pushed 0.9.5-dev branch to codeberg of foxing ( codeberg.org/aenertia/foxing/s ) in preparation for release tagging. A LOT of features and a couple of bug-fixes now the packet/file processing engine has stabilized ; including Semantic Routing to Parsers for Metadata Extraction and in-path Binary analysis using local ORT/BERT models ; letting you get semantic search powers for free when you copy something with foxingd/fxcp #linux #filesystem #bert #vectordb #postgres #xfs #stratis #blake3 #localllm

  17. Have pushed 0.9.5-dev branch to codeberg of foxing ( codeberg.org/aenertia/foxing/s ) in preparation for release tagging. A LOT of features and a couple of bug-fixes now the packet/file processing engine has stabilized ; including Semantic Routing to Parsers for Metadata Extraction and in-path Binary analysis using local ORT/BERT models ; letting you get semantic search powers for free when you copy something with foxingd/fxcp #linux #filesystem #bert #vectordb #postgres #xfs #stratis #blake3 #localllm

  18. Have pushed 0.9.5-dev branch to codeberg of foxing ( codeberg.org/aenertia/foxing/s ) in preparation for release tagging. A LOT of features and a couple of bug-fixes now the packet/file processing engine has stabilized ; including Semantic Routing to Parsers for Metadata Extraction and in-path Binary analysis using local ORT/BERT models ; letting you get semantic search powers for free when you copy something with foxingd/fxcp #linux #filesystem #bert #vectordb #postgres #xfs #stratis #blake3 #localllm

  19. Have pushed 0.9.5-dev branch to codeberg of foxing ( codeberg.org/aenertia/foxing/s ) in preparation for release tagging. A LOT of features and a couple of bug-fixes now the packet/file processing engine has stabilized ; including Semantic Routing to Parsers for Metadata Extraction and in-path Binary analysis using local ORT/BERT models ; letting you get semantic search powers for free when you copy something with foxingd/fxcp #linux #filesystem #bert #vectordb #postgres #xfs #stratis #blake3 #localllm

  20. @OpenSearchProj was named a Leader and Fast Mover in the 2025 GigaOm Radar for Vector Databases 🏆

    My #OpenSearch report highlights:
    ✅ Platform play
    ✅ Search variety
    ✅ Business criteria
    ✅ Security
    And I'd add - it's OPEN SOURCE @linuxfoundation !!
    opensearch.org/gigaom-radar-ve

    #gigaom #vectorDB

  21. @OpenSearchProj was named a Leader and Fast Mover in the 2025 GigaOm Radar for Vector Databases 🏆

    My report highlights:
    ✅ Platform play
    ✅ Search variety
    ✅ Business criteria
    ✅ Security
    And I'd add - it's OPEN SOURCE @linuxfoundation !!
    opensearch.org/gigaom-radar-ve

  22. @OpenSearchProj was named a Leader and Fast Mover in the 2025 GigaOm Radar for Vector Databases 🏆

    My #OpenSearch report highlights:
    ✅ Platform play
    ✅ Search variety
    ✅ Business criteria
    ✅ Security
    And I'd add - it's OPEN SOURCE @linuxfoundation !!
    opensearch.org/gigaom-radar-ve

    #gigaom #vectorDB

  23. @OpenSearchProj was named a Leader and Fast Mover in the 2025 GigaOm Radar for Vector Databases 🏆

    My #OpenSearch report highlights:
    ✅ Platform play
    ✅ Search variety
    ✅ Business criteria
    ✅ Security
    And I'd add - it's OPEN SOURCE @linuxfoundation !!
    opensearch.org/gigaom-radar-ve

    #gigaom #vectorDB

  24. @OpenSearchProj was named a Leader and Fast Mover in the 2025 GigaOm Radar for Vector Databases 🏆

    My #OpenSearch report highlights:
    ✅ Platform play
    ✅ Search variety
    ✅ Business criteria
    ✅ Security
    And I'd add - it's OPEN SOURCE @linuxfoundation !!
    opensearch.org/gigaom-radar-ve

    #gigaom #vectorDB

  25. Stoked seeing the OpenSearch Project featured by Jensen Huang on #NVIDIA #GTC keynote! 😍

    One of the innovations in #OpenSearch V3 has been adding GPU acceleration based on NVIDIA's cuVS. Our #VectorSearch benchmarks, using CAGRA algorithm integrated through Facebook's Faiss library, showed:
    ✅ 9.3x faster index builds
    ✅ 3.75x lower cost
    ✅ 2x higher throughput
    ✅ 2.5x lower CPU usage

    linkedin.com/feed/update/urn:l

    #OpenSearchAmbassador #opensource #gtc2026 #gtc26 #cuvs #vectordb

  26. Stoked seeing the OpenSearch Project featured by Jensen Huang on keynote! 😍

    One of the innovations in V3 has been adding GPU acceleration based on NVIDIA's cuVS. Our benchmarks, using CAGRA algorithm integrated through Facebook's Faiss library, showed:
    ✅ 9.3x faster index builds
    ✅ 3.75x lower cost
    ✅ 2x higher throughput
    ✅ 2.5x lower CPU usage

    linkedin.com/feed/update/urn:l

  27. Stoked seeing the OpenSearch Project featured by Jensen Huang on #NVIDIA #GTC keynote! 😍

    One of the innovations in #OpenSearch V3 has been adding GPU acceleration based on NVIDIA's cuVS. Our #VectorSearch benchmarks, using CAGRA algorithm integrated through Facebook's Faiss library, showed:
    ✅ 9.3x faster index builds
    ✅ 3.75x lower cost
    ✅ 2x higher throughput
    ✅ 2.5x lower CPU usage

    linkedin.com/feed/update/urn:l

    #OpenSearchAmbassador #opensource #gtc2026 #gtc26 #cuvs #vectordb

  28. Stoked seeing the OpenSearch Project featured by Jensen Huang on #NVIDIA #GTC keynote! 😍

    One of the innovations in #OpenSearch V3 has been adding GPU acceleration based on NVIDIA's cuVS. Our #VectorSearch benchmarks, using CAGRA algorithm integrated through Facebook's Faiss library, showed:
    ✅ 9.3x faster index builds
    ✅ 3.75x lower cost
    ✅ 2x higher throughput
    ✅ 2.5x lower CPU usage

    linkedin.com/feed/update/urn:l

    #OpenSearchAmbassador #opensource #gtc2026 #gtc26 #cuvs #vectordb

  29. Stoked seeing the OpenSearch Project featured by Jensen Huang on #NVIDIA #GTC keynote! 😍

    One of the innovations in #OpenSearch V3 has been adding GPU acceleration based on NVIDIA's cuVS. Our #VectorSearch benchmarks, using CAGRA algorithm integrated through Facebook's Faiss library, showed:
    ✅ 9.3x faster index builds
    ✅ 3.75x lower cost
    ✅ 2x higher throughput
    ✅ 2.5x lower CPU usage

    linkedin.com/feed/update/urn:l

    #OpenSearchAmbassador #opensource #gtc2026 #gtc26 #cuvs #vectordb

  30. 310% throughput increase and 300% latency reduction!
    Great work by the AWS engineers with bulk SIMD brings these performance gains in @OpenSearchProject 's vector search 👏
    And it's all under @linuxfoundation 🤩
    opensearch.org/blog/accelerati

  31. Chunking: an essential concept to understand for Retrieval-Augmented Generation (#RAG). It is the process of dividing large documents into smaller, manageable segments called “chunks.” Effective chunking preserves semantic meaning while ensuring content fits within model context limits.

    Proper chunking is essential, as it directly affects retrieval quality. Well-structured chunks improve precision and support more accurate responses.

    

#OpenSource #devops #vectordb #programming #vector #search

  32. Chunking: an essential concept to understand for Retrieval-Augmented Generation (#RAG). It is the process of dividing large documents into smaller, manageable segments called “chunks.” Effective chunking preserves semantic meaning while ensuring content fits within model context limits.

    Proper chunking is essential, as it directly affects retrieval quality. Well-structured chunks improve precision and support more accurate responses.

    

#OpenSource #devops #vectordb #programming #vector #search

  33. Chunking: an essential concept to understand for Retrieval-Augmented Generation (#RAG). It is the process of dividing large documents into smaller, manageable segments called “chunks.” Effective chunking preserves semantic meaning while ensuring content fits within model context limits.

    Proper chunking is essential, as it directly affects retrieval quality. Well-structured chunks improve precision and support more accurate responses.

    

#OpenSource #devops #vectordb #programming #vector #search

  34. Can't wait to to have a great ride at #JavaLand ! 🇩🇪

    #OpenSearch sucht nicht mehr nach Wörtern, sondern nach Bedeutungen. 🔍

    If you're there and want to learn about #vectorDB search and about the @OpenSearchProject, check out my talk 🙂

    See you 11th March in @JavaLandConf 🎡

    🔸Agenda: meine.doag.org/events/javaland

    🔸Tickets: javaland.eu/

  35. Can't wait to to have a great ride at ! 🇩🇪

    sucht nicht mehr nach Wörtern, sondern nach Bedeutungen. 🔍

    If you're there and want to learn about search and about the @OpenSearchProject, check out my talk 🙂

    See you 11th March in @JavaLandConf 🎡

    🔸Agenda: meine.doag.org/events/javaland

    🔸Tickets: javaland.eu/

  36. Can't wait to to have a great ride at #JavaLand ! 🇩🇪

    #OpenSearch sucht nicht mehr nach Wörtern, sondern nach Bedeutungen. 🔍

    If you're there and want to learn about #vectorDB search and about the @OpenSearchProject, check out my talk 🙂

    See you 11th March in @JavaLandConf 🎡

    🔸Agenda: meine.doag.org/events/javaland

    🔸Tickets: javaland.eu/

  37. Can't wait to to have a great ride at #JavaLand ! 🇩🇪

    #OpenSearch sucht nicht mehr nach Wörtern, sondern nach Bedeutungen. 🔍

    If you're there and want to learn about #vectorDB search and about the @OpenSearchProject, check out my talk 🙂

    See you 11th March in @JavaLandConf 🎡

    🔸Agenda: meine.doag.org/events/javaland

    🔸Tickets: javaland.eu/

  38. Can't wait to to have a great ride at #JavaLand ! 🇩🇪

    #OpenSearch sucht nicht mehr nach Wörtern, sondern nach Bedeutungen. 🔍

    If you're there and want to learn about #vectorDB search and about the @OpenSearchProject, check out my talk 🙂

    See you 11th March in @JavaLandConf 🎡

    🔸Agenda: meine.doag.org/events/javaland

    🔸Tickets: javaland.eu/

  39. I joined InstaBlinks podcast to talk about vector search, difference from lexical search, and how the @OpenSearchProject facilitates both in a hybrid model.
    Thanks NetApp Instaclustr for having me!
    youtube.com/watch?v=buKXHi6kFw

    #OpenSearch #vectorSearch #vectorDB #opensource #search

  40. I joined InstaBlinks podcast to talk about vector search, difference from lexical search, and how the @OpenSearchProject facilitates both in a hybrid model.
    Thanks NetApp Instaclustr for having me!
    youtube.com/watch?v=buKXHi6kFw

  41. I joined InstaBlinks podcast to talk about vector search, difference from lexical search, and how the @OpenSearchProject facilitates both in a hybrid model.
    Thanks NetApp Instaclustr for having me!
    youtube.com/watch?v=buKXHi6kFw

    #OpenSearch #vectorSearch #vectorDB #opensource #search