Skip to main content

PgVectorStoreBuilder

Struct PgVectorStoreBuilder 

Source
pub struct PgVectorStoreBuilder { /* private fields */ }
Expand description

Builds a PgVectorStore with connection pooling and optional auto-migration.

§Example

use daimon_plugin_pgvector::{PgVectorStoreBuilder, DistanceMetric};

let store = PgVectorStoreBuilder::new("host=localhost dbname=mydb", 1536)
    .table("embeddings")
    .distance_metric(DistanceMetric::Cosine)
    .hnsw_m(16)
    .hnsw_ef_construction(64)
    .auto_migrate(true)
    .build()
    .await?;

Implementations§

Source§

impl PgVectorStoreBuilder

Source

pub fn new(connection_string: impl Into<String>, dimensions: usize) -> Self

Creates a new builder.

  • connection_string: PostgreSQL connection string (e.g. "host=localhost dbname=mydb user=postgres" or "postgresql://user:pass@host/db")
  • dimensions: the fixed vector dimension count (must match your embedding model)
Source

pub fn table(self, table: impl Into<String>) -> Self

Sets the table name. Default: "daimon_vectors".

Source

pub fn distance_metric(self, metric: DistanceMetric) -> Self

Sets the distance metric. Default: DistanceMetric::Cosine.

Source

pub fn auto_migrate(self, enabled: bool) -> Self

Enables or disables automatic schema creation on first connection. Default: true.

When disabled, use the SQL from crate::migrations to set up the schema manually.

Source

pub fn hnsw_m(self, m: usize) -> Self

Sets the HNSW m parameter (max connections per layer). None uses the PostgreSQL default (16).

Source

pub fn hnsw_ef_construction(self, ef: usize) -> Self

Sets the HNSW ef_construction parameter (build-time search width). None uses the PostgreSQL default (64).

Source

pub fn pool_size(self, size: usize) -> Self

Sets the maximum number of connections in the pool. Default: 16.

Source

pub async fn build(self) -> Result<PgVectorStore>

Builds the PgVectorStore, optionally running migrations.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more