https://github.com/p7coreorg/dotnetcore.urlshortener
https://github.com/p7coreorg/dotnetcore.urlshortener
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/p7coreorg/dotnetcore.urlshortener
- Owner: P7CoreOrg
- License: mit
- Created: 2019-03-20T14:29:33.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-22T12:52:28.000Z (about 7 years ago)
- Last Synced: 2025-08-23T01:24:27.775Z (8 months ago)
- Size: 685 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotnetcore.urlshortener
This is a typical url shortener service that has abstracted out storage, configuration, and events that you need to do analytics.
A Url Shortener Service is really more about those cool dashboards and reports that marketing folks need when they run campaigns.
Those reports and dashboards are not this.
This is a chatty service that only implements the following activities;
* Turning long urls into short urls
* Storing the resultant record and giving you back a lookup id
* Fetching the store record
* Removing the stored record
* Reacting to expired records by requiring that you provide an url when that happens
* A pub-sub that tells you when important things happen for a rich reporting service to tap into
Currently I have an InMemory Working version, but it is expected that a production variant will have stuff like;
* a fast backing database like redis
* a rich usage analytics service
This one is multiple factors bigger and more complicated than this thing
# Replaceable Stores