graph

package
v0.3.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 7, 2023 License: MIT Imports: 8 Imported by: 3

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type GraphCache

type GraphCache[S comparable, T any] struct {
	// contains filtered or unexported fields
}

func NewGraphCache

func NewGraphCache[S comparable, T any](defaultTTL time.Duration) *GraphCache[S, T]

func (*GraphCache[S, T]) AddEdge

func (c *GraphCache[S, T]) AddEdge(tail, head S, w float32)

func (*GraphCache[S, T]) AddEdgeWithExpiration added in v0.0.6

func (c *GraphCache[S, T]) AddEdgeWithExpiration(tail, head S, w float32, expiration time.Time)

func (*GraphCache[S, T]) AddEdgeWithTTL

func (c *GraphCache[S, T]) AddEdgeWithTTL(tail, head S, w float32, ttl time.Duration)

func (*GraphCache[S, T]) AddVertexWithExpiration added in v0.0.6

func (c *GraphCache[S, T]) AddVertexWithExpiration(key S, value T, expiration time.Time)

func (*GraphCache[S, T]) AddVertexWithTTL

func (c *GraphCache[S, T]) AddVertexWithTTL(key S, value T, ttl time.Duration)

func (*GraphCache[S, T]) GetVertex

func (c *GraphCache[S, T]) GetVertex(key S) (T, bool)

func (*GraphCache[S, T]) GetWeight added in v0.0.7

func (c *GraphCache[S, T]) GetWeight(tail, head S) (float32, bool)

func (*GraphCache[S, T]) Neighbor

func (c *GraphCache[S, T]) Neighbor(seed S, step int, k int, tfidf bool) *graph.Graph[S, T]

func (*GraphCache[S, T]) PutVertex added in v0.1.1

func (c *GraphCache[S, T]) PutVertex(key S, value T)

func (*GraphCache[S, T]) Watch added in v0.1.0

func (c *GraphCache[S, T]) Watch(ctx context.Context, interval time.Duration)

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL