Skip to content

Commit

Permalink
0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyberbolt committed Mar 30, 2022
1 parent d070779 commit 1ce66ec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions cyberdb/network/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,11 @@ async def _main(self):
backlog=self._data['config']['max_con']
)

print('CyberDB server is starting, please wait a few seconds before operation!\n* Started at {}:{}'.format(
self._data['config']['host'],
self._data['config']['port']
))

async with server:
await server.serve_forever()

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setuptools.setup(
name="CyberDB",
version="0.3.2",
version="0.4.1",
author="Cyberbolt",
author_email="[email protected]",
description="CyberDB is a lightweight Python in-memory database. It is designed to use Python's built-in data structures Dictionaries, Lists for data storage, efficient communication through Socket TCP, and provide data persistence. This module is often used in Gunicorn inter-process communication, distributed computing and other fields.",
Expand Down

0 comments on commit 1ce66ec

Please sign in to comment.