Git Product home page Git Product logo

senior_project's Introduction

Senior Project

The main purpose of this project is minimize the time taken to copy (a) file(s)/ folder(s). Copy function (which does literal byte copy) in itself is very difficult to optimize as it is I/O bound and vastly depends upon the hardware and the OS. Therefore, the idea is explore listed approaches and/ or combination of them.

Smart Compression

This will look at the file type(normally the extension) to determine the suitable compression algorithm for best perfmance. This will reduce the number of bytes that need to be copied. Note: that it is possible for compression to take longer time based on given input.

Multi-Threading

Traditional copying of file is single-thread, which is very inefficient and does not utilize the resources efficiently. Implementing a concurrent(using Async) & parallel I/O operations to minimize the time.

Determine the appropriate size

There are a lot of overhead associated when opening and closing a file. Generally, large files should be copied in large chunks and small files in small chunks. This drastically reduces the number of disk accesses. The suggestion is gradually growing the size of the buffer from 4KB to 4MB and determining which yields the best performance.

Resource

This was a part of senior project (as mentioned above), which means all the pre-implementation phase files have been include here as well. This includes the research paper, architecture design, UML class diagram, and UI design.

To understand all the design choices and results take a look at results section in research paper.

senior_project's People

Contributors

deepp0925 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.