Tarantool.Queue.NetCore 2.0.1

dotnet add package Tarantool.Queue.NetCore --version 2.0.1
NuGet\Install-Package Tarantool.Queue.NetCore -Version 2.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Tarantool.Queue.NetCore" Version="2.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Tarantool.Queue.NetCore --version 2.0.1
#r "nuget: Tarantool.Queue.NetCore, 2.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Tarantool.Queue.NetCore as a Cake Addin
#addin nuget:?package=Tarantool.Queue.NetCore&version=2.0.1

// Install Tarantool.Queue.NetCore as a Cake Tool
#tool nuget:?package=Tarantool.Queue.NetCore&version=2.0.1

Tarantool.Queue.NetCore

NETCore client for working with Tarantool Queue is based on the library progaudi.tarantool.

.NET Versions

Can be used in projects based on .NET 6.0, .NET 7.0, and .NET 8.0

Usage

Standard Tarantool Queue

  • Linux
    1. Run Tarantool:

      tarantool - i

    2. Run netBox:

      tarantool> box.cfg { listen = 'host:port' }

    3. Start Tarantool Queue

      tarantool> queue = require('queue')

    4. Create test tube if need:

      tarantool> queue.create_tube('queue_test_fifo', 'fifo', {if_not_exists = true, temporary = false})

  • Use cases are in projects:
    1. For Consume
    2. For Produce
    3. In projects in the initialization block, replace parameter in function UseTarantoolQueue with your host settings and port.
    4. Run StandardTarantoolQueueReader and StandardTarantoolQueueWriter

Custom Tarantool Queue

  • Linux
    1. Copy the folder of example lua files to the directory '/home/[your_Linux_user]/override' of your Linux machine where Tarantool and Tarantool Queue are installed.
    2. Run Tarantool:

      tarantool - i

    3. Run netBox:

      tarantool> box.cfg { listen = 'host:port' }

    4. Start custom Tarantool Queue

      tarantool> queue = require('queuecustom')

    5. Register custom Tarantool Queue driver

      tarantool> queue.register_driver('customtube', require('queuecustom.customutube'))

    6. Create test custom tube if need:

      tarantool> queue.create_tube('queue_test_custom_tube', 'customtube', {if_not_exists = true, temporary = false})

    1. In projects in the initialization block, replace parameter in function UseTarantoolQueue with your host settings and port.
    2. Run CustomTarantoolQueueReader and CustomTarantoolQueueWriter
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.1 93 2/1/2024
2.0.0 89 2/1/2024
1.0.0 79 1/27/2024