1 parent 7d004a7 commit 0d14496Copy full SHA for 0d14496
2 files changed
Dockerfile
@@ -2,8 +2,6 @@ FROM rust:latest as builder
2
3
WORKDIR /usr/src/app
4
COPY Cargo.toml Cargo.lock ./
5
-COPY ./ydb ./ydb
6
-COPY ./ydb-grpc ./ydb-grpc
7
RUN \
8
mkdir -v src && \
9
echo "fn main() {println!(\"Building dependencies...\");}" > src/main.rs && \
README.md
@@ -1 +1,11 @@
1
# URL shotener with YDB
+
+This project implements a link shortener in the language of Rust and YDB as Data storage platform.
+The YDB used for store link as row oriented store and column oriented store for visits.
+The operation of adding statistics is implemented via async producer and consumer under YDB topics.
+## Technologies
+- Rust
10
+- YDB
11
+- Docker
0 commit comments